Skip to content

Commit 858af62

Browse files
author
MicroEJ GitHub Delivery
committed
Version 8.1.2
1 parent 22962cd commit 858af62

File tree

3 files changed

+51
-18
lines changed

3 files changed

+51
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [8.1.2] - 2025-10-02
9+
10+
### Changed
11+
12+
- Update Gradle plug-in to `1.4.0`.
13+
814
## [8.1.1] - 2025-03-27
915

1016
### Changed

build.gradle.kts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@
66
*/
77

88
plugins {
9-
id("com.microej.gradle.application") version "1.1.0"
9+
id("com.microej.gradle.application") version libs.versions.microej.sdk
1010
}
1111

1212
group = "com.microej.example.ui"
13-
version = "8.1.1"
13+
version = "8.1.2"
1414

1515
microej {
1616
applicationEntryPoint = "com.microej.demo.widget.common.Navigation"
1717
}
1818

1919
dependencies {
20-
implementation("ej.api:edc:1.3.5")
21-
implementation("ej.api:microui:3.1.0")
22-
implementation("ej.api:drawing:1.0.2")
23-
implementation("ej.library.ui:widget:5.3.1")
24-
implementation("ej.library.runtime:basictool:1.5.0")
25-
implementation("ej.library.runtime:service:1.1.1")
26-
implementation("ej.library.eclasspath:collections:1.4.0")
27-
implementation("ej.library.eclasspath:stringtokenizer:1.2.0")
28-
29-
microejVee("com.microej.veeport.st.stm32f7508-dk:M5QNX_eval:2.2.0")
20+
implementation(libs.api.edc)
21+
implementation(libs.api.microui)
22+
implementation(libs.api.drawing)
23+
implementation(libs.library.widget)
24+
implementation(libs.library.basictool)
25+
implementation(libs.library.service)
26+
implementation(libs.library.collections)
27+
implementation(libs.library.stringtokenizer)
28+
29+
microejVee(libs.vee.port.st.stm32f7508)
3030
}
3131

3232
tasks.withType<Javadoc> {
@@ -40,12 +40,12 @@ testing {
4040

4141
dependencies {
4242
implementation(project())
43-
implementation("ej.api:edc:1.3.5")
44-
implementation("ej.api:microui:3.1.0")
45-
implementation("ej.api:drawing:1.0.2")
46-
implementation("ej.library.test:junit:1.7.1")
47-
implementation("ej.library.runtime:basictool:1.5.0")
48-
implementation("org.junit.platform:junit-platform-launcher:1.8.2")
43+
implementation(libs.api.edc)
44+
implementation(libs.api.microui)
45+
implementation(libs.api.drawing)
46+
implementation(libs.library.basictool)
47+
implementation(libs.junit)
48+
implementation(libs.junit.platform)
4949
}
5050
}
5151
}

gradle/libs.versions.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright 2025 MicroEJ Corp. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be found with this software.
3+
4+
[versions]
5+
microej-sdk = "1.4.0"
6+
pack-ui = "14.2.0"
7+
8+
[libraries]
9+
# APIs
10+
api-edc = { group = "ej.api", name = "edc", version = "1.3.5" }
11+
api-drawing = { group = "ej.api", name = "drawing", version = "1.0.2" }
12+
api-microui = { group = "ej.api", name = "microui", version = "3.1.0" }
13+
14+
# Add-on libraries
15+
library-collections = { group = "ej.library.eclasspath", name = "collections", version = "1.4.0" }
16+
library-stringtokenizer = { group = "ej.library.eclasspath", name = "stringtokenizer", version = "1.2.0" }
17+
library-basictool = { group = "ej.library.runtime", name = "basictool", version = "1.5.0" }
18+
library-service = { group = "ej.library.runtime", name = "service", version = "1.1.1" }
19+
library-widget = { group = "ej.library.ui", name = "widget", version = "5.3.1" }
20+
21+
# Default VEE Ports
22+
vee-port-nxp-mimxrt1170 = { group = "com.nxp.vee.mimxrt1170", name = "vee-port", version = "3.0.0" }
23+
vee-port-st-stm32f7508 = { group = "com.microej.veeport.st.stm32f7508-dk", name = "M5QNX_eval", version = "2.2.0" }
24+
25+
# Test Libraries
26+
junit = { group = "ej.library.test", name = "junit", version = "1.7.1" }
27+
junit-platform = { group = "org.junit.platform", name = "junit-platform-launcher", version = "1.8.2" }

0 commit comments

Comments
 (0)