Skip to content

Commit 4c13b91

Browse files
committed
trying to get tests online
1 parent dbd5fac commit 4c13b91

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

pom.xml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -137,28 +137,29 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-surefire-plugin</artifactId>
140-
<version>3.5.2</version>
140+
<version>3.0.0-M3</version>
141141
<executions>
142142
<execution>
143143
<id>test</id>
144144
<phase>test</phase>
145+
<configuration>
146+
<argLine>
147+
-ea
148+
-Xmx2G
149+
-Xss128m
150+
-Dfile.encoding=UTF-8
151+
</argLine>
152+
<includes>
153+
<include>**/*Tests.java</include>
154+
</includes>
155+
<testSourceDirectory>${basedir}/src/</testSourceDirectory>
156+
</configuration>
145157
<goals>
146158
<goal>test</goal>
147159
</goals>
148160
</execution>
149161
</executions>
150-
<configuration>
151-
<argLine>
152-
-ea
153-
-Xmx${rascal.test.memory}G
154-
-Xss128m
155-
-Dfile.encoding=UTF-8
156-
${argLine}
157-
</argLine>
158-
<includes>
159-
<include>**/RunTests.java</include>
160-
</includes>
161-
</configuration>
162+
162163
</plugin>
163164
<plugin>
164165
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)