chore: remove exec:java plugin
This commit is contained in:
parent
cf64a50744
commit
adb03e7fe3
2 changed files with 0 additions and 36 deletions
10
README.md
10
README.md
|
@ -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
26
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue