Skip to content

Commit dc3c3b0

Browse files
authored
Merge pull request #20 from cwi-swat/rc-for-new-rascal-maven-plugin
ready for next rascal and rascal-maven-plugin versions
2 parents c8ce568 + b996774 commit dc3c3b0

File tree

2 files changed

+8
-20
lines changed

2 files changed

+8
-20
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Set up JDK 11
20-
uses: actions/setup-java@v1
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: 11
23-
24-
- name: Cache Maven packages
25-
uses: actions/cache@v2
26-
with:
27-
path: ~/.m2
28-
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
29-
restore-keys: ${{ runner.os }}-m2
23+
distribution: 'temurin'
24+
cache: 'maven'
3025

3126
- name: Attach artifact
3227
id: build-artifact

pom.xml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<artifactId>php-analysis</artifactId>
2020
<groupId>org.rascalmpl</groupId>
21-
<version>0.2.5-SNAPSHOT</version>
21+
<version>0.2.5-RC2-SNAPSHOT</version>
2222
<packaging>jar</packaging>
2323

2424
<scm>
@@ -48,12 +48,12 @@
4848
<dependency>
4949
<groupId>org.rascalmpl</groupId>
5050
<artifactId>rascal</artifactId>
51-
<version>0.40.17</version>
51+
<version>0.41.0-RC42</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>edu.appstate.cs</groupId>
5555
<artifactId>rascal-git</artifactId>
56-
<version>0.1.15</version>
56+
<version>0.1.16-RC2</version>
5757
</dependency>
5858
</dependencies>
5959

@@ -136,9 +136,8 @@
136136
<plugin>
137137
<groupId>org.rascalmpl</groupId>
138138
<artifactId>rascal-maven-plugin</artifactId>
139-
<version>0.28.9</version>
139+
<version>0.30.0-RC25</version>
140140
<configuration>
141-
<enableStandardLibrary>false</enableStandardLibrary>
142141
<bin>${project.build.outputDirectory}</bin>
143142
<srcs>
144143
<src>${project.basedir}/src/main/rascal</src>
@@ -166,19 +165,13 @@
166165
<goal>tutor</goal>
167166
</goals>
168167
<configuration>
169-
<enableStandardLibrary>true</enableStandardLibrary>
170-
<errorsAsWarnings>false</errorsAsWarnings>
171168
<bin>${project.build.outputDirectory}</bin>
172-
<license>${project.basedir}/LICENSE</license>
173-
<citation>${project.basedir}/CITATION.md</citation>
174169
<sources>|http://github.com/cwi-swat/php-analysis/blob/main|</sources>
175170
<issues>|http://github.com/cwi-swat/php-analysis/issues|</issues>
176171
<srcs>
177172
<src>${project.basedir}/src/main/rascal</src>
178173
<src>${project.basedir}/doc</src>
179174
</srcs>
180-
<ignores>
181-
</ignores>
182175
</configuration>
183176
</execution>
184177
</executions>

0 commit comments

Comments
 (0)