Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(ldap): add profil to skip ldap tests for jdk 1.6
     related to #CAM-5187
  • Loading branch information
Zelldon committed Jun 3, 2016
1 parent 839c4bd commit a851b03
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions engine-plugins/identity-ldap/pom.xml
Expand Up @@ -52,4 +52,23 @@
</plugins>
</build>

<profiles>
<profile>
<id>jdk16</id>
<activation>
<jdk>1.6</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit a851b03

Please sign in to comment.