- Notifications
You must be signed in to change notification settings - Fork122
F/upgrade java#174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
F/upgrade java#174
Changes fromall commits
Commits
Show all changes
7 commits Select commitHold shift + click to select a range
8413385 Upgrade gradle to the latest version so we have Java 15 support
billoneild47e38e Fix gradles new api. Come back later to try and lock this down more
billoneilfc0499d Upgrade to Java 15
billoneil8cb4736 Add comment for why we switched docker containers
billoneil27a4cae Upgrade java in gh action aslo
billoneil405d5da Switch the java command
billoneil6d8dd06 new api
billoneilFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
2 changes: 1 addition & 1 deletion.github/workflows/build-stubbornjava-web.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletionsbuild.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Binary file modifiedgradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletiongradle/wrapper/gradle-wrapper.properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
2 changes: 2 additions & 0 deletionsgradlew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
25 changes: 7 additions & 18 deletionsgradlew.bat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletionsstubbornjava-cms-server/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| dependencies { | ||
| // Project reference | ||
| api project(':stubbornjava-undertow') | ||
| api project(':stubbornjava-common') | ||
| compileOnly libs.lombok | ||
| annotationProcessor libs.lombok | ||
| testImplementation libs.junit | ||
| } |
86 changes: 43 additions & 43 deletionsstubbornjava-common/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,50 +1,50 @@ | ||
| // {{start:dependencies}} | ||
| dependencies { | ||
| // Project reference | ||
| api project(':stubbornjava-undertow') | ||
| api libs.slf4j | ||
| api libs.logback | ||
| api libs.jacksonCore | ||
| api libs.jacksonDatabind | ||
| api libs.jacksonDatabind | ||
| api libs.jacksonAnnotations | ||
| api libs.jacksonDatatypeJdk8 | ||
| api libs.jacksonDatatypeJsr310 | ||
| api libs.jacksonDataformatCsv | ||
| api libs.metricsCore | ||
| api libs.metricsJvm | ||
| api libs.metricsJson | ||
| api libs.metricsLogback | ||
| api libs.metricsHealthchecks | ||
| api libs.metricsGraphite | ||
| api libs.guava | ||
| api libs.typesafeConfig | ||
| api libs.handlebars | ||
| api libs.handlebarsJackson | ||
| api libs.handlebarsMarkdown | ||
| api libs.handlebarsHelpers | ||
| api libs.handlebarsHumanize | ||
| api libs.htmlCompressor | ||
| api libs.hikaricp | ||
| api libs.jool | ||
| api libs.okhttp | ||
| api libs.okhttpUrlConnection | ||
| api libs.loggingInterceptor | ||
| api libs.s3 | ||
| api libs.failsafe | ||
| api libs.jsoup | ||
| api libs.sitemapgen4j | ||
| api libs.jbcrypt | ||
| api libs.jooq | ||
| api libs.jooqCodegen | ||
| api libs.flyway | ||
| api libs.connectorj | ||
| api libs.javaxAnnotation | ||
| compileOnly libs.lombok | ||
| annotationProcessor libs.lombok | ||
| testImplementation libs.junit | ||
| testImplementation libs.hsqldb | ||
| } | ||
| // {{end:dependencies}} |
10 changes: 5 additions & 5 deletionsstubbornjava-examples/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| // {{start:dependencies}} | ||
| dependencies { | ||
| implementation project(':stubbornjava-undertow') | ||
| implementation project(':stubbornjava-common') | ||
| implementation libs.hsqldb | ||
| implementation libs.hashids | ||
| testImplementation libs.junit | ||
| } | ||
| // {{end:dependencies}} |
8 changes: 4 additions & 4 deletionsstubbornjava-undertow/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| // {{start:dependencies}} | ||
| dependencies { | ||
| api libs.undertowCore | ||
| api libs.slf4j | ||
| api libs.logback | ||
| testImplementation libs.junit | ||
| } | ||
| // {{end:dependencies}} |
10 changes: 5 additions & 5 deletionsstubbornjava-webapp/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletionsstubbornjava-webapp/docker/Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.