Compare commits

..

No commits in common. "20e45c2243e1309f1911ad69f2804e6c95c89483" and "8239a51122669cd981968c89e32f45e25e88df2c" have entirely different histories.

2 changed files with 110 additions and 127 deletions

View File

@ -22,10 +22,10 @@ git clone https://git.worlio.com/Worlds_Remergence_Project/WorldsOrganizer.git
cd Worlds-Organizer cd Worlds-Organizer
``` ```
2. Run Maven 2. Run the Maven Build command
``` ```
mvn package mvn build
``` ```
The jar will be located within the target folder. The jar will be located within the target folder.

51
pom.xml
View File

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.worlio</groupId> <groupId>org.worlio</groupId>
@ -61,6 +60,7 @@
<build> <build>
<plugins> <plugins>
<!--Compiler settings-->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
@ -70,51 +70,34 @@
<target>8</target> <target>8</target>
</configuration> </configuration>
</plugin> </plugin>
<!--Run junit tests using maven test command-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
<!--Execute main using mvn tasks compile, exec:java-->
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId> <artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version> <version>1.6.0</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration> <configuration>
<outputFile>${project.build.outputDirectory}/project.properties</outputFile> <mainClass>org.worlio.WorldsOrganizer.WorldsOrganizer</mainClass>
</configuration> </configuration>
</execution>
</executions>
</plugin> </plugin>
<!--Create jar using mvn tasks compile, assembly:single-->
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <version>3.1.1</version>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration> <configuration>
<descriptorRefs> <descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef> <descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs> </descriptorRefs>
<archive> <archive>
<manifest> <manifest>
<mainClass>org.worlio.WorldsOrganizer.WorldsOrganizer</mainClass> <mainClass>org.worlio.WorldsOrganizer.Main</mainClass>
</manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</archive> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<mainClass>org.worlio.WorldsOrganizer.WorldsOrganizer</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>