Skip to content

Commit 5caaf8d

Browse files
committed
removed superfluous stuff
1 parent 818816b commit 5caaf8d

File tree

1 file changed

+2
-89
lines changed

1 file changed

+2
-89
lines changed

pom.xml

Lines changed: 2 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@
4343
<properties>
4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4545
<maven-version>3.9.9</maven-version>
46-
<exec.mainClass>org.rascalmpl.shell.RascalShell</exec.mainClass>
47-
<rascal.test.memory>3</rascal.test.memory>
4846
<maven.compiler.release>11</maven.compiler.release>
49-
<rascal-maven.version>0.30.0-RC17</rascal-maven.version>
47+
<rascal-maven.version>0.30.0-RC24</rascal-maven.version>
5048
</properties>
5149

5250
<build>
@@ -76,12 +74,6 @@
7674
<exclude>**/*.class</exclude>
7775
</excludes>
7876
</testResource>
79-
<testResource>
80-
<directory>test/org/rascalmpl/test/data/</directory>
81-
</testResource>
82-
<testResource>
83-
<directory>src/org/rascalmpl/library/</directory>
84-
</testResource>
8577
</testResources>
8678

8779
<plugins>
@@ -98,7 +90,6 @@
9890
<artifactId>rascal-maven-plugin</artifactId>
9991
<version>${rascal-maven.version}</version>
10092
<configuration>
101-
<errorsAsWarnings>false</errorsAsWarnings>
10293
<bin>${project.build.outputDirectory}</bin>
10394
<srcs>
10495
<src>${project.basedir}/src</src>
@@ -169,25 +160,6 @@
169160
</includes>
170161
</configuration>
171162
</plugin>
172-
<plugin>
173-
<groupId>org.jacoco</groupId>
174-
<artifactId>jacoco-maven-plugin</artifactId>
175-
<version>0.8.12</version>
176-
<executions>
177-
<execution>
178-
<goals>
179-
<goal>prepare-agent</goal>
180-
</goals>
181-
</execution>
182-
<execution>
183-
<id>report</id>
184-
<phase>test</phase>
185-
<goals>
186-
<goal>report</goal>
187-
</goals>
188-
</execution>
189-
</executions>
190-
</plugin>
191163
<plugin>
192164
<groupId>org.apache.maven.plugins</groupId>
193165
<artifactId>maven-release-plugin</artifactId>
@@ -244,7 +216,7 @@
244216
<dependency>
245217
<groupId>org.rascalmpl</groupId>
246218
<artifactId>rascal</artifactId>
247-
<version>0.41.0-RC33</version>
219+
<version>0.41.0-RC42</version>
248220
</dependency>
249221
<!-- Repackaged Eclipse Dependencies -->
250222
<dependency>
@@ -269,63 +241,4 @@
269241
<version>9.6</version>
270242
</dependency>
271243
</dependencies>
272-
<profiles>
273-
<profile>
274-
<id>unshaded</id>
275-
<build>
276-
<plugins>
277-
<plugin>
278-
<groupId>org.apache.maven.plugins</groupId>
279-
<artifactId>maven-shade-plugin</artifactId>
280-
<version>3.6.0</version>
281-
<executions>
282-
<execution>
283-
<phase>package</phase>
284-
<goals>
285-
<goal>shade</goal>
286-
</goals>
287-
<configuration>
288-
<skip>true</skip>
289-
</configuration>
290-
</execution>
291-
</executions>
292-
</plugin>
293-
<plugin>
294-
<groupId>org.codehaus.mojo</groupId>
295-
<artifactId>license-maven-plugin</artifactId>
296-
<configuration>
297-
<skipDownloadLicenses>true</skipDownloadLicenses>
298-
</configuration>
299-
</plugin>
300-
</plugins>
301-
</build>
302-
</profile>
303-
<profile>
304-
<id>compiler-tests</id>
305-
<build>
306-
<plugins>
307-
<plugin>
308-
<groupId>org.apache.maven.plugins</groupId>
309-
<artifactId>maven-surefire-plugin</artifactId>
310-
<executions>
311-
<execution><id>default-test</id><phase>none</phase></execution> <!-- disable regular test run -->
312-
<execution>
313-
<id>test-compiler-tests</id>
314-
<phase>test</phase>
315-
<goals>
316-
<goal>test</goal>
317-
</goals>
318-
</execution>
319-
</executions>
320-
<configuration>
321-
<includes>
322-
<include>**/org/rascalmpl/compiler/**/*Tests.java</include>
323-
<include>**/org/rascalmpl/compiler/**/*Test.java</include>
324-
</includes>
325-
</configuration>
326-
</plugin>
327-
</plugins>
328-
</build>
329-
</profile>
330-
</profiles>
331244
</project>

0 commit comments

Comments
 (0)