Skip to content

Commit

Permalink
Drop JDK 7 profile
Browse files Browse the repository at this point in the history
Signed-off-by: jansupol <[email protected]>
  • Loading branch information
jansupol authored and senivam committed Mar 11, 2024
1 parent 809c7eb commit 663242e
Showing 1 changed file with 21 additions and 31 deletions.
52 changes: 21 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>verify</id>
<phase>validate</phase>
<goals>
<!-- Fail the build if checkstyle rules for contributions are not met. -->
<goal>check</goal>
</goals>
<configuration>
<configLocation>etc/config/checkstyle-verify.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<excludes>**/module-info.java</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
Expand Down Expand Up @@ -1190,37 +1211,6 @@
</site>
</distributionManagement>
</profile>
<profile>
<id>jdk1.7+</id>
<activation>
<jdk>[1.7,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>verify</id>
<phase>validate</phase>
<goals>
<!-- Fail the build if checkstyle rules for contributions are not met. -->
<goal>check</goal>
</goals>
<configuration>
<configLocation>etc/config/checkstyle-verify.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<excludes>**/module-info.java</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sonar</id>
<properties>
Expand Down

0 comments on commit 663242e

Please sign in to comment.