Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
20e45c2243 | |||
9c42cc80fd | |||
8239a51122 |
10
README.md
10
README.md
|
@ -1,5 +1,5 @@
|
|||
# Worlds Organizer
|
||||
![icon.png](icon.png)
|
||||
![Screenshot should be here...](screenshot.png)
|
||||
|
||||
A tool for WorldsPlayer files and resources to edit, modify, and organize your lists and data.
|
||||
|
||||
|
@ -18,14 +18,14 @@ Make sure you are using a JDK, and compile using maven.
|
|||
1. Clone the repository and enter it's contents
|
||||
|
||||
```
|
||||
git clone https://git.worlio.com/Wirlaburla/WorldsOrganizer.git
|
||||
git clone https://git.worlio.com/Worlds_Remergence_Project/WorldsOrganizer.git
|
||||
cd Worlds-Organizer
|
||||
```
|
||||
|
||||
2. Run the Maven Build command
|
||||
2. Run Maven
|
||||
|
||||
```
|
||||
mvn build
|
||||
mvn package
|
||||
```
|
||||
|
||||
The jar will be located within the target folder.
|
||||
|
@ -61,5 +61,3 @@ You can edit a value or label by double clicking on it's cell, and then changing
|
|||
Worlds Organizer is not affiliated with Worlds Incorporated or it's products.
|
||||
|
||||
To avoid loss of data or corruption, it is recommended to backup your files before directly modifying them.
|
||||
|
||||
![Screenshot should be here...](screenshot.png)
|
||||
|
|
51
pom.xml
51
pom.xml
|
@ -1,7 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
||||
http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.worlio</groupId>
|
||||
|
@ -60,7 +61,6 @@
|
|||
|
||||
<build>
|
||||
<plugins>
|
||||
<!--Compiler settings-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
@ -70,34 +70,51 @@
|
|||
<target>8</target>
|
||||
</configuration>
|
||||
</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>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<artifactId>properties-maven-plugin</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>write-project-properties</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<mainClass>org.worlio.WorldsOrganizer.WorldsOrganizer</mainClass>
|
||||
<outputFile>${project.build.outputDirectory}/project.properties</outputFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!--Create jar using mvn tasks compile, assembly:single-->
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>3.1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>org.worlio.WorldsOrganizer.Main</mainClass>
|
||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||
<mainClass>org.worlio.WorldsOrganizer.WorldsOrganizer</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</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>
|
||||
</archive>
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in New Issue
Block a user