chore: remove exec:java plugin

This commit is contained in:
Ryan Dowling 2019-05-23 19:25:46 +10:00
parent cf64a50744
commit adb03e7fe3
No known key found for this signature in database
GPG key ID: 5539FCDB88950EFD
2 changed files with 0 additions and 36 deletions

View file

@ -51,16 +51,6 @@ Make sure to add the directory containing launch4jc to your executable path whic
`C:\Program Files (x86)\Launch4j`
```
## Running the application
If you wish to run the application in development, you can run the following:
```
mvn exec:java
```
All working files will be put in the `testDir` directory.
## Building artefacts
To build artefacts for release, simply run `mvn install`.

26
pom.xml
View file

@ -69,36 +69,10 @@
<version>1.5.26</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.atlauncher.App</mainClass>
<arguments>
<argument>--working-dir=testDir</argument>
<argument>--debug</argument>
<argument>--debug-level 3</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>