diff options
author | Godin <mandrikov@gmail.com> | 2010-11-11 11:45:08 +0000 |
---|---|---|
committer | Godin <mandrikov@gmail.com> | 2010-11-11 11:45:08 +0000 |
commit | be89d5f7baa6ff9267e2a22927e7f7d73e45049d (patch) | |
tree | 0a7deb1161e87c7b11e85c0da51fba59b7723c02 /pom.xml | |
parent | 10b43586ab408e6fdf6c4db25ff8bb053805e187 (diff) | |
download | sonarqube-be89d5f7baa6ff9267e2a22927e7f7d73e45049d.tar.gz sonarqube-be89d5f7baa6ff9267e2a22927e7f7d73e45049d.zip |
Move Java API compatibility check to own profile
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -923,13 +923,20 @@ mmmm </execution> </executions> </plugin> + </plugins> + </build> + </profile> + <profile> + <id>check-java-api</id> + <build> + <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <executions> <execution> - <id>check-java-version</id> + <id>enforce-java-api-compatibility</id> <phase>verify</phase> <goals> <goal>check</goal> |