Skip to content

Commit

Permalink
OZ-468: Only run validator on JDK 8 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher authored Feb 16, 2024
1 parent ffde3dd commit a3f506c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions maven-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,15 @@
<version>3.2.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.2.1</version>
<configuration>
<ignoreEOLStyle>true</ignoreEOLStyle>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<profile>
<id>validator</id>
<activation>
<jdk>1.8</jdk>
<property>
<name>env.CI</name>
<value>true</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<profile>
<id>validator</id>
<activation>
<jdk>1.8</jdk>
<property>
<name>env.CI</name>
<value>true</value>
Expand Down

0 comments on commit a3f506c

Please sign in to comment.