Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ao committed Jul 28, 2019
2 parents 4873395 + bef260a commit 7df95dc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Yes, of course you can!

`git clone https://github.com/ao/ADD.git`

### Using IntelliJ?

`Open in IntelliJ IDEA.`

`Edit configurations..`
Expand All @@ -40,5 +42,12 @@ Set the `classpath` to `ADD` and the `Main class` to `gl.ao.add.ADD`

`Run the application!`

### Using Maven on the commandline?

`mvn clean install`

`java -jar target/add-1.0-SNAPSHOT.jar`

## Problems?
[Create an issue](https://github.com/ao/ADD/issues/new) if you need help
[Create an issue](https://github.com/ao/ADD/issues/new) if you need help

18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<version>1.0-SNAPSHOT</version>

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -18,6 +19,21 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>gl.ao.add.ADD</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand All @@ -28,4 +44,4 @@
</dependency>
</dependencies>

</project>
</project>

0 comments on commit 7df95dc

Please sign in to comment.