Skip to content

Commit 03d9e07

Browse files
committed
Adds maven exec plugin.
Useful for integration tests.
1 parent d039160 commit 03d9e07

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

pom.xml

+23
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,21 @@
2727
</archive>
2828
</configuration>
2929
</plugin>
30+
<plugin>
31+
<groupId>org.codehaus.mojo</groupId>
32+
<artifactId>exec-maven-plugin</artifactId>
33+
<version>3.0.0</version>
34+
<executions>
35+
<execution>
36+
<goals>
37+
<goal>java</goal>
38+
</goals>
39+
</execution>
40+
</executions>
41+
<configuration>
42+
<mainClass>org.dogethereum.agents.Main</mainClass>
43+
</configuration>
44+
</plugin>
3045
</plugins>
3146
</build>
3247

@@ -116,6 +131,14 @@
116131
</dependency>
117132
<!-- -->
118133

134+
<!-- Execute plugin; used in integration tests -->
135+
<dependency>
136+
<groupId>org.codehaus.mojo</groupId>
137+
<artifactId>exec-maven-plugin</artifactId>
138+
<version>3.0.0</version>
139+
</dependency>
140+
<!-- -->
141+
119142
<dependency>
120143
<groupId>com.google.guava</groupId>
121144
<artifactId>guava</artifactId>

0 commit comments

Comments
 (0)