Skip to content

Commit

Permalink
Merge pull request #10 from bonifaido/master
Browse files Browse the repository at this point in the history
Travis build and pom fixes
  • Loading branch information
szegedi committed Jan 26, 2015
2 parents 1e0fc79 + 346f0c1 commit 38cd2e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
language: java
jdk:
- openjdk8
# openjdk8 is not available on travis-ci.org yet
- oraclejdk8
- openjdk7
- oraclejdk7

sudo: false
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.dynalang</groupId>
<artifactId>dynalink</artifactId>
<name>Dynalink</name>
<version>0.7</version>
<version>0.8-SNAPSHOT</version>
<packaging>jar</packaging>
<description>Dynalink is an invokedynamic-based high-level linking and metaobject protocol library. It enables creation of languages on the JVM that can easily interoperate with plain Java objects and each other.</description>
<url>http://szegedi.github.com/dynalink</url>
Expand Down Expand Up @@ -126,9 +126,10 @@

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>4.1</version>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 38cd2e5

Please sign in to comment.