Skip to content

Commit

Permalink
Revert "optimized parent pom"
Browse files Browse the repository at this point in the history
This reverts commit 0671d16.
  • Loading branch information
ezTxmMC committed Dec 24, 2024
1 parent 0671d16 commit 70ab085
Showing 1 changed file with 62 additions and 4 deletions.
66 changes: 62 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@

<modules>
<module>smoothcloud-api</module>
<module>smoothcloud-chain</module>
<module>smoothcloud-launcher</module>
<module>smoothcloud-manager</module>
<module>smoothcloud-modules</module>
<module>smoothcloud-node</module>
<module>smoothcloud-worker</module>
<module>smoothcloud-chain</module>
<module>smoothcloud-modules</module>
<module>smoothcloud-manager</module>
<module>smoothcloud-util</module>
<module>smoothcloud-launcher</module>
</modules>

<properties>
Expand All @@ -41,4 +41,62 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.5.15</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>eu.smoothcloud.node.SmoothCloudNode</mainClass>
</manifest>
<manifestEntries>
<Created-By>ezTxmMC, SyntaxJason &amp; TntTastisch</Created-By>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:netty5-*</artifact>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 70ab085

Please sign in to comment.