Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps #13

Merged
merged 6 commits into from
May 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@ language: java
sudo: false

jdk:
- oraclejdk8
- openjdk8

os:
- linux
cache:
directories:
- $HOME/.m2

script: ant all

notifications:
on_success: change
on_failure: always
template:
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Java CUP Maven plug-in

[![Build Status](https://travis-ci.org/vbmacher/cup-maven-plugin.png)](https://travis-ci.org/vbmacher/cup-maven-plugin)
[![Build Status](https://travis-ci.com/vbmacher/cup-maven-plugin.png)](https://travis-ci.com/vbmacher/cup-maven-plugin)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.vbmacher/cup-maven-plugin/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/com.github.vbmacher/cup-maven-plugin)

<a href="https://www.buymeacoffee.com/vbmacher" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
Expand All @@ -17,7 +17,7 @@ NOTE: This is not an "official" plug-in, it was developed without any communicat

## Copyright

Java CUP Maven plug-in + repackaged jars projects: (c) Copyright 2012-2016, Peter Jakubčo
Java CUP Maven plug-in + repackaged jars projects: (c) Copyright 2012-2021, Peter Jakubčo

"CUP Parser Generator": Copyright 1996-2015 by Scott Hudson, Frank Flannery, C. Scott Ananian, Michael Petter

Expand All @@ -36,7 +36,7 @@ To do so, add the following to the plugins-section of your `pom.xml`.
<plugin>
<groupId>com.github.vbmacher</groupId>
<artifactId>cup-maven-plugin</artifactId>
<version>11b-20160615</version>
<version>11b-20160615-1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -72,7 +72,7 @@ In order to use it, you must add a dependency to your `pom.xml`:
<dependency>
<groupId>com.github.vbmacher</groupId>
<artifactId>java-cup-runtime</artifactId>
<version>11b-20160615</version>
<version>11b-20160615-1</version>
</dependency>
```

Expand Down
64 changes: 32 additions & 32 deletions build.xml
Original file line number Diff line number Diff line change
@@ -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>
Loading