Make example runnable via maven

pull/17/merge
Richard Körber 2015-12-16 00:44:55 +01:00
parent 5c68fcae40
commit 1b3248f3cf
1 changed files with 20 additions and 0 deletions

View File

@ -28,6 +28,26 @@
<name>acme4j example</name>
<description>Example for using acme4j</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.shredzone.acme4j.ClientTest</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.shredzone.acme4j</groupId>