Skip to content

Commit 4753ddb

Browse files
committed
Fixed dependencies for build.
1 parent c379025 commit 4753ddb

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

-6.45 MB
Binary file not shown.
4.37 MB
Binary file not shown.

pom.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependencies>
2929
<dependency>
3030
<groupId>NetLogo</groupId>
31-
<artifactId>NetLogo</artifactId>
31+
<artifactId>NetLogoLite</artifactId>
3232
<version>5.3.1</version>
3333
</dependency>
3434
<dependency>
@@ -46,12 +46,21 @@
4646

4747
<build>
4848
<finalName>${project.name}</finalName>
49+
<resources>
50+
<resource>
51+
<directory>src/test</directory>
52+
<excludes>
53+
<exclude>**/*.java</exclude>
54+
</excludes>
55+
</resource>
56+
</resources>
4957
<plugins>
5058
<plugin>
5159
<groupId>org.apache.maven.plugins</groupId>
5260
<artifactId>maven-compiler-plugin</artifactId>
61+
<version>3.6.0</version>
5362
<executions>
54-
<!-- Prevent test compilation as of Scala dependency -->
63+
<!-- Prevent test compilation as of missing dependency in NetLogoLite.jar -->
5564
<execution>
5665
<id>default-testCompile</id>
5766
<phase>test-compile</phase>
@@ -69,6 +78,7 @@
6978
<plugin>
7079
<groupId>org.apache.maven.plugins</groupId>
7180
<artifactId>maven-jar-plugin</artifactId>
81+
<version>3.0.2</version>
7282
<configuration>
7383
<archive>
7484
<manifestFile>src/main/resources/manifest.txt</manifestFile>

0 commit comments

Comments
 (0)