Skip to content

Commit 037ddb9

Browse files
deweyjoseDewey jose
andauthored
Replace maven-project with maven-core 3.9.9 and update plugin version (#242)
* chore: replace maven-project with maven-core 3.9.9, update plugin version, and fix test imports * chore: trigger whitespace build --------- Co-authored-by: Dewey jose <[email protected]>
1 parent 3d36b00 commit 037ddb9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

graphqlcodegen-bootstrap-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131
<dependency>
3232
<groupId>org.apache.maven</groupId>
33-
<artifactId>maven-project</artifactId>
33+
<artifactId>maven-core</artifactId>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>

graphqlcodegen-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212

1313
<artifactId>graphqlcodegen-maven-plugin</artifactId>
14-
<version>3.3.0</version>
14+
<version>3.3.1</version>
1515
<packaging>maven-plugin</packaging>
1616

1717
<name>GraphQL Code Generator Maven Plugin</name>
@@ -34,7 +34,7 @@
3434
</dependency>
3535
<dependency>
3636
<groupId>org.apache.maven</groupId>
37-
<artifactId>maven-project</artifactId>
37+
<artifactId>maven-core</artifactId>
3838
<scope>provided</scope>
3939
</dependency>
4040
<dependency>

graphqlcodegen-maven-plugin/src/test/java/io/github/deweyjose/graphqlcodegen/services/SchemaFileServiceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package io.github.deweyjose.graphqlcodegen.services;
22

3-
import static junit.framework.Assert.assertFalse;
43
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertFalse;
55
import static org.junit.jupiter.api.Assertions.assertNotNull;
66
import static org.junit.jupiter.api.Assertions.assertThrows;
77
import static org.junit.jupiter.api.Assertions.assertTrue;

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
<maven-plugin-plugin.version>3.15.1</maven-plugin-plugin.version>
5050
<maven-plugin-api.version>3.9.9</maven-plugin-api.version>
5151
<maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version>
52-
<maven-project.version>2.2.1</maven-project.version>
5352
<maven-release-plugin.version>3.0.0-M4</maven-release-plugin.version>
5453
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
5554
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
@@ -58,7 +57,8 @@
5857
<junit.version>5.12.2</junit.version>
5958
<lombok.version>1.18.38</lombok.version>
6059
<kotlinpoet-jvm.version>1.18.1</kotlinpoet-jvm.version>
61-
<spotless.version>2.44.4</spotless.version>
60+
<spotless.version>2.44.4</spotless.version>
61+
<maven-core.version>3.9.9</maven-core.version>
6262
</properties>
6363

6464
<dependencyManagement>
@@ -85,8 +85,8 @@
8585
</dependency>
8686
<dependency>
8787
<groupId>org.apache.maven</groupId>
88-
<artifactId>maven-project</artifactId>
89-
<version>${maven-project.version}</version>
88+
<artifactId>maven-core</artifactId>
89+
<version>${maven-core.version}</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>com.netflix.graphql.dgs.codegen</groupId>

0 commit comments

Comments
 (0)