Skip to content

Commit 0453ec0

Browse files
committed
Update pom.xml
1 parent 89a8e17 commit 0453ec0

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

pom.xml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>pl.koder95</groupId>
8-
<artifactId>Interpreter</artifactId>
8+
<artifactId>interpreter</artifactId>
99
<version>1.0-SNAPSHOT</version>
10+
<name>Interpreter by Koder95</name>
1011
<description>Universal implementation of the Interpreter Design Pattern.</description>
1112
<url>https://github.com/koder95/Interpreter</url>
1213
<scm>
@@ -55,6 +56,13 @@
5556
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
5657
<autoReleaseAfterClose>true</autoReleaseAfterClose>
5758
</configuration>
59+
<dependencies>
60+
<dependency>
61+
<groupId>com.thoughtworks.xstream</groupId>
62+
<artifactId>xstream</artifactId>
63+
<version>1.4.15</version> <!-- apparently this needs to be exactly this version -->
64+
</dependency>
65+
</dependencies>
5866
</plugin>
5967
<plugin>
6068
<groupId>org.apache.maven.plugins</groupId>
@@ -101,17 +109,6 @@
101109
</execution>
102110
</executions>
103111
</plugin>
104-
<plugin>
105-
<groupId>org.apache.maven.plugins</groupId>
106-
<artifactId>maven-surefire-plugin</artifactId>
107-
<version>3.2.2</version>
108-
<configuration>
109-
<argLine>
110-
--add-opens java.base/java.lang=ALL-UNNAMED
111-
--add-opens java.base/java.util=ALL-UNNAMED
112-
</argLine>
113-
</configuration>
114-
</plugin>
115112
</plugins>
116113
</build>
117114
</project>

0 commit comments

Comments
 (0)