Skip to content

Commit

Permalink
bump to 1.6.0-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Oct 12, 2021
1 parent 939d253 commit a221e51
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 53 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
<awssdk.version>2.17.57</awssdk.version>
<aws-alexa-sdk.version>2.40.0</aws-alexa-sdk.version>
<azure-functions-java-library.version>1.4.2</azure-functions-java-library.version>
<kotlin.version>1.5.31</kotlin.version>
<kotlin.version>1.6.0-RC</kotlin.version>
<kotlin.coroutine.version>1.5.2</kotlin.coroutine.version>
<dekorate.version>2.5.0</dekorate.version>
<maven-artifact-transfer.version>0.10.0</maven-artifact-transfer.version>
Expand Down
3 changes: 1 addition & 2 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
<!-- Quarkus uses jboss-parent and it comes with 3.8.1-jboss-1, we don't want that in the templates -->
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<kotlin.version>1.5.31</kotlin.version>
<kotlin.version>1.6.0-RC</kotlin.version>
<dokka.version>1.5.31</dokka.version>
<scala.version>2.12.13</scala.version>
<scala-maven-plugin.version>4.4.0</scala-maven-plugin.version>
Expand Down Expand Up @@ -847,7 +847,6 @@
<property>
<name>dokka</name>
</property>
<jdk>(,16)</jdk>
<file>
<exists>src/main/kotlin</exists>
</file>
Expand Down
45 changes: 12 additions & 33 deletions extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@
<goal>test-compile</goal>
</goals>
</execution>
<execution>
<id>kapt</id>
<phase>generate-sources</phase>
<goals>
<goal>kapt</goal>
</goals>
<configuration>
<annotationProcessors>
<annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down Expand Up @@ -173,37 +185,4 @@
</plugin>
</plugins>
</build>
<profiles>
<!-- Execute kapt, but not on Java 16 or higher due to
- https://youtrack.jetbrains.com/issue/KT-45545 (Java 16+)
- https://youtrack.jetbrains.com/issue/KT-47583 (Java 17+) -->
<profile>
<id>kapt-not-on-jdk16</id>
<activation>
<jdk>(,16)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<executions>
<execution>
<id>kapt</id>
<phase>generate-sources</phase>
<goals>
<goal>kapt</goal>
</goals>
<configuration>
<annotationProcessors>
<annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion independent-projects/bootstrap/maven-resolver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
<configuration>
<environmentVariables>
<!-- to verify that MAVEN_OPTS filtering works in BootstrapMavenOptions -->
<MAVEN_OPTS>--add-opens java.base/java.util=ALL-UNNAMED</MAVEN_OPTS>
<!-- <MAVEN_OPTS>&#45;&#45;add-opens java.base/java.util=ALL-UNNAMED</MAVEN_OPTS>-->
</environmentVariables>
</configuration>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion independent-projects/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
<!-- Quarkus uses jboss-parent and it comes with 3.8.1-jboss-1, we don't want that in the templates -->
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<kotlin.version>1.5.30</kotlin.version>
<kotlin.version>1.6.0-RC</kotlin.version>
<scala.version>2.12.13</scala.version>
<scala-plugin.version>4.4.0</scala-plugin.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,3 @@ dependencies {
compileJava {
options.compilerArgs << '-parameters'
}

// This is a fix as kotlin 1.5.30 does not support Java 17 yet
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
tasks.quarkusDev {
compilerArgs = ["-jvm-target", "16"]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ plugins {
kotlin("jvm")
}

// This is a fix as kotlin 1.5.30 does not support Java 17 yet
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
tasks.quarkusDev {
compilerArgs = listOf("-jvm-target", "16")
}
}
dependencies {
implementation(project(":port"))
implementation(project(":domain"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<maven.compiler.source>11</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<kotlin.version>1.5.30</kotlin.version>
<kotlin.version>1.6.0-RC</kotlin.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<maven.compiler.source>11</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<kotlin.version>1.5.30</kotlin.version>
<kotlin.version>1.6.0-RC</kotlin.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit a221e51

Please sign in to comment.