Skip to content

Commit

Permalink
Adjustments for java8
Browse files Browse the repository at this point in the history
  • Loading branch information
supermegaciaccount authored and rmetzger committed Mar 18, 2014
1 parent 7244d04 commit 6bf7d5a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
env:
global:
Expand Down
35 changes: 35 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,36 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>jdk8</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>1.8</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>


Expand All @@ -251,6 +281,11 @@
<artifactId>slf4j-log4j12</artifactId>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.18.1-GA</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 6bf7d5a

Please sign in to comment.