mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-19 18:46:43 +00:00
Now outputs .jar files to /target
-Server jar outputs to /target/ -All other jars output to /target/plugins
This commit is contained in:
parent
3158dd75ea
commit
556f443ec2
@ -5,6 +5,8 @@
|
|||||||
<output-test url="file://$MODULE_DIR$/target/test-classes" />
|
<output-test url="file://$MODULE_DIR$/target/test-classes" />
|
||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/${parent.project.basedir}/ServerTarget" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/ServerTarget" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
|
@ -10,6 +10,27 @@
|
|||||||
<version>1.2a</version>
|
<version>1.2a</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<version>3.6.2</version>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<source>1.8</source>
|
||||||
|
<target>1.8</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<outputDirectory>../target</outputDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<groupId>net.simon987.server</groupId>
|
<groupId>net.simon987.server</groupId>
|
||||||
<artifactId>server</artifactId>
|
<artifactId>server</artifactId>
|
||||||
<version>1.2a</version>
|
<version>1.2a</version>
|
||||||
|
21
pom.xml
21
pom.xml
@ -21,6 +21,22 @@
|
|||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<version>3.6.2</version>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<source>1.8</source>
|
||||||
|
<target>1.8</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<outputDirectory>../target/plugins</outputDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
@ -32,4 +48,9 @@
|
|||||||
<module>Plugin Cubot</module>
|
<module>Plugin Cubot</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- explicitly set build encoding so not altered by build platform defaults -->
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
BIN
target/plugins/plugin-biomassBlob-1.2a.jar
Normal file
BIN
target/plugins/plugin-biomassBlob-1.2a.jar
Normal file
Binary file not shown.
BIN
target/plugins/plugin-cubot-1.2a.jar
Normal file
BIN
target/plugins/plugin-cubot-1.2a.jar
Normal file
Binary file not shown.
BIN
target/plugins/plugin-misc-hw-1.2a.jar
Normal file
BIN
target/plugins/plugin-misc-hw-1.2a.jar
Normal file
Binary file not shown.
BIN
target/plugins/plugin-npc-1.2a.jar
Normal file
BIN
target/plugins/plugin-npc-1.2a.jar
Normal file
Binary file not shown.
BIN
target/server-1.2a.jar
Normal file
BIN
target/server-1.2a.jar
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user