Skip to content

Commit

Permalink
writing dependencies of rascal project in a form readable/usable for …
Browse files Browse the repository at this point in the history
…the website later
  • Loading branch information
jurgenvinju committed Feb 16, 2023
1 parent 712bfa0 commit a57f3df
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ bin/
bootstrap/
pom.xml.releaseBackup
release.properties
pom.xml.versionsBackup
rascal-DEPENDENCIES.txt

.DS_Store
/.apt_generated/
Expand Down
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<includes>
<include>plugin.xml</include>
<include>META-INF/RASCAL.MF</include>
<include>rascal-DEPENDENCIES.txt</include>
</includes>
</resource>
<resource>
Expand Down Expand Up @@ -222,6 +223,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<goals>
<goal>tree</goal>
</goals>
<phase>package</phase>
<configuration>
<output>rascal-DEPENDENCIES.txt</output>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit a57f3df

Please sign in to comment.