Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vbmacher committed May 29, 2021
1 parent 8e3160d commit 4f191a7
Show file tree
Hide file tree
Showing 6 changed files with 360 additions and 365 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Expand Up @@ -8,9 +8,3 @@ os:
- linux

script: ant all

notifications:
on_success: change
on_failure: always
template:
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
64 changes: 32 additions & 32 deletions build.xml
@@ -1,40 +1,40 @@
<project name="cup-maven-plugin" default="dist" basedir=".">
<description>
Build file for cup-maven-plugin
</description>
<description>
Build file for cup-maven-plugin
</description>

<condition property="isWindows">
<os family="windows" />
</condition>
<condition property="isWindows">
<os family="windows"/>
</condition>

<condition property="isUnix">
<os family="unix" />
</condition>
<condition property="isUnix">
<os family="unix"/>
</condition>

<target name="all" depends="mvn_windows, mvn_unix"/>
<target name="all" depends="mvn_windows, mvn_unix"/>

<target name="mvn_windows" if="isWindows">
<exec dir="java-cup" executable="cmd">
<arg line="/c mvn clean install" />
</exec>
<exec dir="java-cup-runtime" executable="cmd">
<arg line="/c mvn clean install" />
</exec>
<exec dir="cup-maven-plugin" executable="cmd">
<arg line="/c mvn clean install" />
</exec>
</target>
<target name="mvn_windows" if="isWindows">
<exec dir="java-cup" executable="cmd">
<arg line="/c mvn clean install"/>
</exec>
<exec dir="java-cup-runtime" executable="cmd">
<arg line="/c mvn clean install"/>
</exec>
<exec dir="cup-maven-plugin" executable="cmd">
<arg line="/c mvn clean install"/>
</exec>
</target>

<target name="mvn_unix" if="isUnix">
<exec dir="java-cup" executable="sh">
<arg line="-c 'mvn clean install'" />
</exec>
<exec dir="java-cup-runtime" executable="sh">
<arg line="-c 'mvn clean install'" />
</exec>
<exec dir="cup-maven-plugin" executable="sh">
<arg line="-c 'mvn clean install'" />
</exec>
</target>
<target name="mvn_unix" if="isUnix">
<exec dir="java-cup" executable="sh">
<arg line="-c 'mvn clean install'"/>
</exec>
<exec dir="java-cup-runtime" executable="sh">
<arg line="-c 'mvn clean install'"/>
</exec>
<exec dir="cup-maven-plugin" executable="sh">
<arg line="-c 'mvn clean install'"/>
</exec>
</target>

</project>

0 comments on commit 4f191a7

Please sign in to comment.