Skip to content

Commit ef0bee8

Browse files
committed
Use OpenRemote 1.3.0 and Java 21
1 parent bb4d974 commit ef0bee8

File tree

7 files changed

+220
-214
lines changed

7 files changed

+220
-214
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.parallel=true
33
projectName = custom-project
44
version = 1.0-SNAPSHOT
55

6-
openremoteVersion = 1.2.4
6+
openremoteVersion = 1.3.0
77

88
jacksonVersion = 2.16.0
99
typescriptGeneratorVersion = 3.2.1263

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"ui/demo/*"
88
],
99
"devDependencies": {
10-
"@openremote/util": "^1.2.4"
10+
"@openremote/util": "^1.3.0"
1111
}
1212
}

project.gradle

+9-3
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,12 @@ repositories {
155155
maven {
156156
url = "https://s01.oss.sonatype.org/content/repositories/snapshots"
157157
}
158+
maven {
159+
url = "https://repo.jenkins-ci.org/releases/"
160+
}
161+
maven {
162+
url = 'https://jitpack.io'
163+
}
158164
}
159165

160166
// Eclipse needs help
@@ -378,10 +384,10 @@ tasks.register('tscWatch', Exec) {
378384
// Configure Java build
379385
plugins.withType(JavaPlugin).whenPluginAdded {
380386

381-
// Use Java 17
387+
// Use Java 21
382388
tasks.withType(JavaCompile) {
383-
sourceCompatibility = JavaVersion.VERSION_17
384-
targetCompatibility = JavaVersion.VERSION_17
389+
sourceCompatibility = JavaVersion.VERSION_21
390+
targetCompatibility = JavaVersion.VERSION_21
385391
def warnLogFile = file("$buildDir/${name}Warnings.log")
386392
logging.addStandardErrorListener(new StandardOutputListener() {
387393
void onOutput(CharSequence output) {

ui/app/custom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"test": "echo \"Error: no test specified\" && exit 1"
1919
},
2020
"dependencies": {
21-
"@openremote/manager": "^1.2.4",
21+
"@openremote/manager": "^1.3.0",
2222
"model": "workspace:*",
2323
"rest": "workspace:*"
2424
},
@@ -30,7 +30,7 @@
3030
"@babel/plugin-transform-runtime": "^7.16.4",
3131
"@babel/preset-env": "^7.16.4",
3232
"@babel/runtime": "^7.16.3",
33-
"@openremote/util": "^1.2.4",
33+
"@openremote/util": "^1.3.0",
3434
"@typescript-eslint/eslint-plugin": "^5.9.0",
3535
"@typescript-eslint/parser": "^5.9.0",
3636
"babel-loader": "^8.2.3",

ui/component/model/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"author": "OpenRemote",
2323
"license": "AGPL-3.0-or-later",
2424
"devDependencies": {
25-
"@openremote/util": "^1.2.4"
25+
"@openremote/util": "^1.3.0"
2626
},
2727
"publishConfig": {
2828
"access": "restricted"

ui/component/rest/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
"author": "OpenRemote",
2323
"license": "AGPL-3.0-or-later",
2424
"dependencies": {
25-
"@openremote/rest": "^1.2.4",
25+
"@openremote/rest": "^1.3.0",
2626
"axios": "0.24.0",
2727
"model": "workspace:*",
2828
"qs": "^6.8.0"
2929
},
3030
"devDependencies": {
31-
"@openremote/util": "^1.2.4",
31+
"@openremote/util": "^1.3.0",
3232
"@types/qs": "^6.9.7"
3333
},
3434
"publishConfig": {

0 commit comments

Comments
 (0)