Skip to content

Commit

Permalink
Upgrade Gradle to 8.1.1
Browse files Browse the repository at this point in the history
Remove webui module since we don't use it.

Try to fix some circular dependency warning.
  • Loading branch information
zapek committed Apr 23, 2023
1 parent aee04bd commit 790423f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,9 @@ jacocoTestReport {
}

dependencies {
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' // handles @ConfigurationProperties
implementation project(':common')
implementation project(':ui')
implementation project(':webui')
implementation 'org.springframework.boot:spring-boot-starter-json'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ plugins {

// To upgrade Gradle, change the version here, refresh, then run the 'wrapper' task
wrapper {
gradleVersion = '8.0.2'
gradleVersion = '8.1.1'
}

subprojects {
Expand Down
1 change: 1 addition & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@ dependencies {
exclude group: "com.vaadin.external.google", module: "android-json"
}
testFixturesImplementation 'org.apache.commons:commons-lang3'
testImplementation(testFixtures(project(":common")))
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ gradleEnterprise {
rootProject.name = 'Xeres'
include 'ui'
include 'app'
include 'webui'
include 'common'
2 changes: 2 additions & 0 deletions webui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ To upgrade Angular, use https://update.angular.io/ and pray.

And because it breaks all the time, there's no Angular stuff here anymore.
If you want to write a web frontend, feel free to restart it here.

Note that the module is currently removed from the gradle build.

0 comments on commit 790423f

Please sign in to comment.