Skip to content

Commit cfb479d

Browse files
committed
Bump avaje-inject to 8.3
1 parent 9aa4c21 commit cfb479d

File tree

13 files changed

+41
-37
lines changed

13 files changed

+41
-37
lines changed

http-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
<dependencies>
2727

2828
<dependency>
29-
<groupId>org.avaje.composite</groupId>
29+
<groupId>io.avaje</groupId>
3030
<artifactId>junit</artifactId>
31-
<version>5.1</version>
31+
<version>1.1</version>
3232
<scope>test</scope>
3333
</dependency>
3434

http-generator-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
<plugin>
3131
<groupId>org.apache.maven.plugins</groupId>
3232
<artifactId>maven-compiler-plugin</artifactId>
33-
<version>3.8.1</version>
33+
<version>3.10.1</version>
3434
<configuration>
35-
<source>11</source>
36-
<target>11</target>
35+
<source>1.8</source>
36+
<target>1.8</target>
3737
<!-- Turn off annotation processing for building -->
3838
<compilerArgument>-proc:none</compilerArgument>
3939
</configuration>

http-generator-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<plugin>
6262
<groupId>org.apache.maven.plugins</groupId>
6363
<artifactId>maven-compiler-plugin</artifactId>
64-
<version>3.8.1</version>
64+
<version>3.10.1</version>
6565
<configuration>
6666
<source>1.8</source>
6767
<target>1.8</target>

http-generator-helidon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-compiler-plugin</artifactId>
30-
<version>3.8.1</version>
30+
<version>3.10.1</version>
3131
<configuration>
3232
<source>1.8</source>
3333
<target>1.8</target>

http-generator-javalin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-compiler-plugin</artifactId>
30-
<version>3.8.1</version>
30+
<version>3.10.1</version>
3131
<configuration>
3232
<source>1.8</source>
3333
<target>1.8</target>

http-generator-jex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-compiler-plugin</artifactId>
30-
<version>3.8.1</version>
30+
<version>3.10.1</version>
3131
<configuration>
3232
<source>1.8</source>
3333
<target>1.8</target>

http-generator-spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<plugin>
2929
<groupId>org.apache.maven.plugins</groupId>
3030
<artifactId>maven-compiler-plugin</artifactId>
31-
<version>3.8.1</version>
31+
<version>3.10.1</version>
3232
<configuration>
3333
<source>1.8</source>
3434
<target>1.8</target>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
<dependencies>
2626
<dependency>
27-
<groupId>org.avaje.composite</groupId>
27+
<groupId>io.avaje</groupId>
2828
<artifactId>junit</artifactId>
29-
<version>5.1</version>
29+
<version>1.1</version>
3030
<scope>test</scope>
3131
</dependency>
3232

tests/test-client/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<parent>
55
<artifactId>java11-oss</artifactId>
66
<groupId>org.avaje</groupId>
7-
<version>3.2</version>
7+
<version>3.8</version>
8+
<relativePath/>
89
</parent>
910

1011
<modelVersion>4.0.0</modelVersion>
@@ -15,15 +16,15 @@
1516
<properties>
1617
<maven.deploy.skip>true</maven.deploy.skip>
1718
<jex.version>1.6</jex.version>
18-
<avaje-inject.version>6.12</avaje-inject.version>
19+
<avaje-inject.version>8.3</avaje-inject.version>
1920
</properties>
2021

2122
<dependencies>
2223

2324
<dependency>
24-
<groupId>org.avaje.composite</groupId>
25+
<groupId>org.avaje</groupId>
2526
<artifactId>logback</artifactId>
26-
<version>1.1</version>
27+
<version>1.0</version>
2728
</dependency>
2829

2930
<dependency>
@@ -101,7 +102,7 @@
101102
<plugin>
102103
<groupId>org.apache.maven.plugins</groupId>
103104
<artifactId>maven-compiler-plugin</artifactId>
104-
<version>3.8.1</version>
105+
<version>3.10.1</version>
105106
<configuration>
106107
<annotationProcessorPaths>
107108
<path>

tests/test-helidon/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<parent>
1010
<groupId>org.avaje</groupId>
1111
<artifactId>java11-oss</artifactId>
12-
<version>3.2</version>
12+
<version>3.8</version>
13+
<relativePath/>
1314
</parent>
1415

1516
<properties>
@@ -125,7 +126,7 @@
125126
<plugin>
126127
<groupId>org.apache.maven.plugins</groupId>
127128
<artifactId>maven-compiler-plugin</artifactId>
128-
<version>3.8.1</version>
129+
<version>3.10.1</version>
129130
<configuration>
130131
<release>11</release>
131132
</configuration>

0 commit comments

Comments
 (0)