Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[DE-445] JPMS module names
  • Loading branch information
rashtao committed Dec 20, 2022
commit 2a956988a2fefe7cade5b6498b38e4df9049f226
1 change: 1 addition & 0 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<maven.deploy.skip>false</maven.deploy.skip>
<SslTest>false</SslTest>
<sonar.test.exclusions>src/test/**/*</sonar.test.exclusions>
<moduleName>com.arangodb.driver</moduleName>
</properties>

<profiles>
Expand Down
1 change: 1 addition & 0 deletions jackson-serde/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<moduleName>com.arangodb.serde.jackson</moduleName>
</properties>

<dependencies>
Expand Down
1 change: 1 addition & 0 deletions jsonb-serde/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<properties>
<!-- FIXME: requires JDK 11 -->
<maven.deploy.skip>true</maven.deploy.skip>
<moduleName>com.arangodb.serde.jsonb</moduleName>
</properties>

<dependencies>
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${moduleName}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions serde-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@

<artifactId>serde-api</artifactId>

<properties>
<moduleName>com.arangodb.serde</moduleName>
</properties>

</project>
5 changes: 5 additions & 0 deletions shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<moduleName>com.arangodb.driver</moduleName>
</properties>

<dependencies>
Expand Down Expand Up @@ -45,6 +46,10 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
Expand Down