Skip to content

Commit 9a1843c

Browse files
authored
Merge pull request #416 from avaje/feature/bump-parent-junit
Bump parent pom and avaje junit
2 parents 7aa900f + ac79eaf commit 9a1843c

File tree

10 files changed

+9
-42
lines changed

10 files changed

+9
-42
lines changed

http-api/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
<plugin>
3737
<groupId>org.apache.maven.plugins</groupId>
3838
<artifactId>maven-surefire-plugin</artifactId>
39-
<version>3.0.0</version>
4039
<configuration>
4140
<forkCount>0</forkCount>
4241
</configuration>

http-client/pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,6 @@
8686

8787
<build>
8888
<plugins>
89-
<plugin>
90-
<groupId>org.apache.maven.plugins</groupId>
91-
<artifactId>maven-failsafe-plugin</artifactId>
92-
<version>3.2.5</version>
93-
</plugin>
94-
<plugin>
95-
<groupId>org.apache.maven.plugins</groupId>
96-
<artifactId>maven-surefire-plugin</artifactId>
97-
<version>3.2.5</version>
98-
<configuration>
99-
<argLine>-XX:+EnableDynamicAgentLoading -Dnet.bytebuddy.experimental=true</argLine>
100-
</configuration>
101-
</plugin>
10289
<plugin>
10390
<groupId>org.apache.maven.plugins</groupId>
10491
<artifactId>maven-compiler-plugin</artifactId>

http-generator-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
<artifactId>avaje-http-client-generator</artifactId>
1111

1212
<properties>
13-
<java.version>11</java.version>
13+
<maven.compiler.release>11</maven.compiler.release>
1414
</properties>
15+
1516
<dependencies>
1617
<dependency>
1718
<groupId>io.avaje</groupId>
@@ -48,7 +49,6 @@
4849
<plugin>
4950
<groupId>org.apache.maven.plugins</groupId>
5051
<artifactId>maven-surefire-plugin</artifactId>
51-
<version>${maven-surefire-plugin.version}</version>
5252
<configuration>
5353
<useModulePath>false</useModulePath>
5454
</configuration>

http-inject-plugin/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
<plugin>
3838
<groupId>org.apache.maven.plugins</groupId>
3939
<artifactId>maven-surefire-plugin</artifactId>
40-
<version>3.0.0</version>
4140
<configuration>
4241
<forkCount>0</forkCount>
4342
</configuration>

pom.xml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.avaje</groupId>
66
<artifactId>java11-oss</artifactId>
7-
<version>4.0</version>
7+
<version>4.1</version>
88
</parent>
99

1010
<groupId>io.avaje</groupId>
@@ -26,22 +26,10 @@
2626
</properties>
2727

2828
<dependencies>
29-
<dependency>
30-
<groupId>net.bytebuddy</groupId>
31-
<artifactId>byte-buddy</artifactId>
32-
<version>1.14.13</version>
33-
<scope>test</scope>
34-
</dependency>
35-
<dependency>
36-
<groupId>net.bytebuddy</groupId>
37-
<artifactId>byte-buddy-agent</artifactId>
38-
<version>1.14.13</version>
39-
<scope>test</scope>
40-
</dependency>
4129
<dependency>
4230
<groupId>io.avaje</groupId>
4331
<artifactId>junit</artifactId>
44-
<version>1.4</version>
32+
<version>1.5</version>
4533
<scope>test</scope>
4634
</dependency>
4735
</dependencies>

tests/test-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>io.avaje</groupId>
4646
<artifactId>junit</artifactId>
47-
<version>1.4</version>
47+
<version>1.5</version>
4848
<scope>test</scope>
4949
</dependency>
5050

tests/test-javalin-jsonb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<dependency>
9595
<groupId>io.avaje</groupId>
9696
<artifactId>junit</artifactId>
97-
<version>1.4</version>
97+
<version>1.5</version>
9898
<scope>test</scope>
9999
</dependency>
100100

tests/test-javalin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>io.avaje</groupId>
8989
<artifactId>junit</artifactId>
90-
<version>1.4</version>
90+
<version>1.5</version>
9191
<scope>test</scope>
9292
</dependency>
9393

tests/test-jex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>io.avaje</groupId>
8989
<artifactId>junit</artifactId>
90-
<version>1.4</version>
90+
<version>1.5</version>
9191
<scope>test</scope>
9292
</dependency>
9393

tests/test-nima-jsonb/pom.xml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<surefire.useModulePath>false</surefire.useModulePath>
1818
</properties>
1919

20-
2120
<dependencies>
2221
<dependency>
2322
<groupId>io.avaje</groupId>
@@ -58,7 +57,7 @@
5857
<dependency>
5958
<groupId>io.avaje</groupId>
6059
<artifactId>junit</artifactId>
61-
<version>1.4</version>
60+
<version>1.5</version>
6261
<scope>test</scope>
6362
</dependency>
6463

@@ -96,11 +95,6 @@
9695
</annotationProcessorPaths>
9796
</configuration>
9897
</plugin>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-surefire-plugin</artifactId>
102-
<version>3.0.0</version>
103-
</plugin>
10498
<plugin>
10599
<groupId>io.repaint.maven</groupId>
106100
<artifactId>tiles-maven-plugin</artifactId>

0 commit comments

Comments
 (0)