|
43 | 43 | <properties> |
44 | 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
45 | 45 | <maven-version>3.9.9</maven-version> |
46 | | - <exec.mainClass>org.rascalmpl.shell.RascalShell</exec.mainClass> |
47 | | - <rascal.test.memory>3</rascal.test.memory> |
48 | 46 | <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> |
50 | 48 | </properties> |
51 | 49 |
|
52 | 50 | <build> |
|
76 | 74 | <exclude>**/*.class</exclude> |
77 | 75 | </excludes> |
78 | 76 | </testResource> |
79 | | - <testResource> |
80 | | - <directory>test/org/rascalmpl/test/data/</directory> |
81 | | - </testResource> |
82 | | - <testResource> |
83 | | - <directory>src/org/rascalmpl/library/</directory> |
84 | | - </testResource> |
85 | 77 | </testResources> |
86 | 78 |
|
87 | 79 | <plugins> |
|
98 | 90 | <artifactId>rascal-maven-plugin</artifactId> |
99 | 91 | <version>${rascal-maven.version}</version> |
100 | 92 | <configuration> |
101 | | - <errorsAsWarnings>false</errorsAsWarnings> |
102 | 93 | <bin>${project.build.outputDirectory}</bin> |
103 | 94 | <srcs> |
104 | 95 | <src>${project.basedir}/src</src> |
|
169 | 160 | </includes> |
170 | 161 | </configuration> |
171 | 162 | </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> |
191 | 163 | <plugin> |
192 | 164 | <groupId>org.apache.maven.plugins</groupId> |
193 | 165 | <artifactId>maven-release-plugin</artifactId> |
|
244 | 216 | <dependency> |
245 | 217 | <groupId>org.rascalmpl</groupId> |
246 | 218 | <artifactId>rascal</artifactId> |
247 | | - <version>0.41.0-RC33</version> |
| 219 | + <version>0.41.0-RC42</version> |
248 | 220 | </dependency> |
249 | 221 | <!-- Repackaged Eclipse Dependencies --> |
250 | 222 | <dependency> |
|
269 | 241 | <version>9.6</version> |
270 | 242 | </dependency> |
271 | 243 | </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> |
331 | 244 | </project> |
0 commit comments