Skip to content

Commit 926e5cb

Browse files
committed
Add missing name tag to modules pom.xml
1 parent 50c0fd4 commit 926e5cb

File tree

17 files changed

+19
-2
lines changed

17 files changed

+19
-2
lines changed

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22

33
<artifactId>graphql-jpa-query-annotations</artifactId>
4-
<name>graphql-jpa-query-annotations</name>
4+
<name>${artifactId}</name>
55

66
<parent>
77
<groupId>com.introproventures</groupId>

autoconfigure/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<relativePath>../build</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-autoconfigure</artifactId>
10+
<name>${artifactId}</name>
1011

1112
<description>
1213
Provides Spring Boot Auto-Configuration Support

boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33

44
<artifactId>graphql-jpa-query-boot-starter</artifactId>
5-
<name>graphql-jpa-query-boot-starter</name>
5+
<name>${artifactId}</name>
66
<packaging>jar</packaging>
77

88
<description>

build/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<relativePath>../dependencies</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-build</artifactId>
10+
<name>${artifactId}</name>
1011
<packaging>pom</packaging>
1112

1213
<description>

dependencies/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-dependencies</artifactId>
10+
<name>${artifactId}</name>
1011
<packaging>pom</packaging>
1112

1213
<description>

introspection/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<relativePath>../build</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-introspection</artifactId>
10+
<name>${artifactId}</name>
1011

1112
<description>
1213
Provides Java Class Introspection Support for JPA Entities

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,7 @@
383383
<configuration>
384384
<publishingServerId>central</publishingServerId>
385385
<skipPublishing>${skipPublishing}</skipPublishing>
386+
<deploymentName>${artifactId}-${version}</deploymentName>
386387
</configuration>
387388
</plugin>
388389
</plugins>

tests/gatling/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</parent>
1010

1111
<artifactId>graphql-jpa-query-tests-gatling</artifactId>
12+
<name>${artifactId}</name>
1213

1314
<properties>
1415
<java.version>21</java.version>

tests/models/books/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</parent>
99

1010
<artifactId>graphql-jpa-query-test-model-books</artifactId>
11+
<name>${artifactId}</name>
1112

1213
<dependencies>
1314
<dependency>

tests/models/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
</parent>
1010

1111
<artifactId>graphql-jpa-query-test-models</artifactId>
12+
<name>${artifactId}</name>
13+
1214
<packaging>pom</packaging>
1315

1416
<modules>

0 commit comments

Comments
 (0)