Skip to content

Commit

Permalink
Updated dependencies. All tests pass. This adds support for Java 19
Browse files Browse the repository at this point in the history
  • Loading branch information
tazmaniax committed Dec 8, 2022
1 parent cdb3150 commit 4f0ae97
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/manual/configuration.textile
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ Java source level, which overrides the @java.version@ system property. For examp

bc. java.source=11

Values: @1.7@ (No longer supported since 1.5.0), @1.8@ (No longer supported since 1.7.0), @9@ (No longer supported since 1.7.0), @10@ (No longer supported since 1.7.0), @11@, @12@, @13@, @14@, @15@, @17@, @18@.
Values: @1.7@ (No longer supported since 1.5.0), @1.8@ (No longer supported since 1.7.0), @9@ (No longer supported since 1.7.0), @10@ (No longer supported since 1.7.0), @11@, @12@, @13@, @14@, @15@, @17@, @18@, @19@.

Default: @11@

Expand Down
6 changes: 3 additions & 3 deletions framework/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ require: &allDependencies
- org.bouncycastle -> bcpkix-jdk18on 1.72
- org.codehaus.groovy -> groovy 3.0.13
- org.codehaus.groovy -> groovy-xml 3.0.13
- org.eclipse.jdt -> org.eclipse.jdt.core 3.31.0
- org.eclipse.jdt -> org.eclipse.jdt.core 3.32.0
- org.hibernate -> hibernate-core 5.6.5.Final.patched
- net.bytebuddy -> byte-buddy 1.12.19
- javax.persistence -> javax.persistence-api 2.2
- org.hibernate.common -> hibernate-commons-annotations 5.1.2.Final
- org.hibernate -> hibernate-validator 5.4.2.Final
- io.smallrye -> jandex 3.0.4
- org.hibernate -> hibernate-validator 5.4.3.Final
- io.smallrye -> jandex 3.0.5
- org.jboss.logging -> jboss-logging 3.5.0.Final
- org.jboss.spec.javax.transaction -> jboss-transaction-api_1.2_spec 1.1.1.Final
- javax.xml.bind -> jaxb-api 2.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 2 additions & 1 deletion framework/src/play/classloading/ApplicationCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public class ApplicationCompiler {
"15", CompilerOptions.VERSION_15,
"16", CompilerOptions.VERSION_16,
"17", CompilerOptions.VERSION_17,
"18", CompilerOptions.VERSION_18
"18", CompilerOptions.VERSION_18,
"19", CompilerOptions.VERSION_19
);

final Map<String, Boolean> packagesCache = new HashMap<>();
Expand Down

0 comments on commit 4f0ae97

Please sign in to comment.