mirror of https://github.com/qos-ch/slf4j
Merge branch 'javabrett-travis'
This commit is contained in:
commit
f8a590ea67
|
|
@ -1,4 +1,7 @@
|
|||
dist: trusty
|
||||
language: java
|
||||
jdk:
|
||||
- oraclejdk9
|
||||
notifications:
|
||||
email:
|
||||
- notification@qos.ch
|
||||
|
|
|
|||
30
pom.xml
30
pom.xml
|
|
@ -157,6 +157,7 @@
|
|||
<version>1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>toolchain</id>
|
||||
<goals>
|
||||
<goal>toolchain</goal>
|
||||
</goals>
|
||||
|
|
@ -164,6 +165,10 @@
|
|||
</executions>
|
||||
<configuration>
|
||||
<toolchains>
|
||||
<jdk>
|
||||
<version>9</version>
|
||||
</jdk>
|
||||
|
||||
<jdk>
|
||||
<version>1.6</version>
|
||||
</jdk>
|
||||
|
|
@ -459,6 +464,31 @@
|
|||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>travis</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>env.TRAVIS</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-toolchains-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>toolchain</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
|
||||
<pluginRepositories>
|
||||
|
|
|
|||
Loading…
Reference in New Issue