Skip to content

Commit

Permalink
after merge
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
  • Loading branch information
senivam committed Dec 19, 2024
1 parent 6d2b142 commit f16b653
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 3 deletions.
8 changes: 8 additions & 0 deletions examples/groovy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2197,6 +2197,7 @@
<freemarker.version>2.3.33</freemarker.version>
<gae.version>2.0.29</gae.version>
<groovy.version>5.0.0-alpha-11</groovy.version>
<groovy.jdk8.version>4.0.24</groovy.jdk8.version>
<gson.version>2.11.0</gson.version>

<!--versions, extracted here due to maven-enforcer-plugin -->
Expand Down Expand Up @@ -2236,7 +2237,7 @@
<jmh.version>1.37</jmh.version>
<jmockit.version>1.49</jmockit.version>
<junit4.version>4.13.2</junit4.version>
<junit5.version>5.11.0</junit5.version>
<junit5.version>5.11.4</junit5.version>
<junit5.jdk8.version>5.10.3</junit5.jdk8.version>
<junit-platform-suite.version>1.11.0</junit-platform-suite.version>
<kryo.version>4.0.3</kryo.version>
Expand Down
40 changes: 39 additions & 1 deletion test-framework/maven/container-runner-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
</description>

<properties>
<!-- <groovy.version>3.0.21</groovy.version>-->
<groovy-eclipse-compiler.version>3.7.0</groovy-eclipse-compiler.version>
<groovy-eclipse-batch.version>3.0.8-01</groovy-eclipse-batch.version>
<maven.version>3.9.2</maven.version>
Expand Down Expand Up @@ -305,5 +304,44 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>jdk_8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<groovy.version>${groovy.jdk8.version}</groovy.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-all</artifactId>
<type>pom</type>
<version>${groovy.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion tests/e2e-inject/non-inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<groupId>org.glassfish.jersey.incubator</groupId>
<artifactId>jersey-injectless-client</artifactId>
<version>2.46-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
Expand Down

0 comments on commit f16b653

Please sign in to comment.