Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</parent>

<artifactId>api</artifactId>
<name>api</name>

<properties>
<checkstyle.skip>true</checkstyle.skip>
Expand Down
1 change: 1 addition & 0 deletions cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</parent>

<artifactId>cache</artifactId>
<name>cache</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</parent>

<artifactId>server</artifactId>
<name>server</name>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
</parent>

<artifactId>test</artifactId>
<name>test</name>
<packaging>pom</packaging>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This indicates that the module produces no JAR, just the POM file itself

The new API is more strict about uploading an empty jar during CI which is why things were failing after switching to the new url


<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>

<dependencies>
Expand Down
Loading