Skip to content

Commit 11fab40

Browse files
Bump maven-surefire-plugin from 2.12 to 3.0.0-M7 (#326)
* Bump maven-surefire-plugin from 2.12 to 2.22.2 Bumps [maven-surefire-plugin](https://github.com/apache/maven-surefire) from 2.12 to 2.22.2. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](apache/maven-surefire@surefire-2.12...surefire-2.22.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix: update maven-surefire-plugin versions to 3.0.0-M7 * fix: add gmavenplus-plugin.version property Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Igor Dianov <[email protected]>
1 parent 692455b commit 11fab40

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

graphql-jpa-query-schema/pom.xml

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

15+
<properties>
16+
<gmavenplus-plugin.version>2.1.0</gmavenplus-plugin.version>
17+
</properties>
18+
1519
<dependencies>
1620

1721
<dependency>
@@ -131,7 +135,7 @@
131135
<plugin>
132136
<groupId>org.codehaus.gmavenplus</groupId>
133137
<artifactId>gmavenplus-plugin</artifactId>
134-
<version>2.1.0</version>
138+
<version>${gmavenplus-plugin.version}</version>
135139
<executions>
136140
<execution>
137141
<goals>
@@ -143,7 +147,6 @@
143147
<plugin>
144148
<groupId>org.apache.maven.plugins</groupId>
145149
<artifactId>maven-surefire-plugin</artifactId>
146-
<version>3.0.0-M7</version>
147150
</plugin>
148151
</plugins>
149152
</build>

pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<maven.compiler.source>${java.version}</maven.compiler.source>
2121
<maven.compiler.target>${java.version}</maven.compiler.target>
2222

23+
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
2324
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
2425
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
2526
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
@@ -213,7 +214,7 @@
213214
</plugin>
214215
<plugin>
215216
<artifactId>maven-surefire-plugin</artifactId>
216-
<version>2.12</version>
217+
<version>${maven-surefire-plugin.version}</version>
217218
<configuration>
218219
<includes>
219220
<include>**/*Test.java</include>
@@ -222,8 +223,6 @@
222223
<include>**/*Tests_*.java</include>
223224
</includes>
224225
<systemPropertyVariables>
225-
<slf4j.version>${slf4j.version}</slf4j.version>
226-
<log4j.version>${log4j.version}</log4j.version>
227226
<user.timezone>UTC</user.timezone>
228227
</systemPropertyVariables>
229228
</configuration>

0 commit comments

Comments
 (0)