Skip to content

Commit

Permalink
[NO JIRA] Update parent pom to 79.0.0.2165 (#4905)
Browse files Browse the repository at this point in the history
  • Loading branch information
alban-auzeill authored Oct 15, 2024
1 parent b807569 commit e6037cd
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 22 deletions.
6 changes: 5 additions & 1 deletion docs/java-custom-rules-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,11 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>${project.basedir}/src/main/resources/license-header.txt</header>
<licenseSets>
<licenseSet>
<header>${project.basedir}/src/main/resources/license-header.txt</header>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
12 changes: 8 additions & 4 deletions java-checks-test-sources/aws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,14 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
12 changes: 8 additions & 4 deletions java-checks-test-sources/default/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1071,10 +1071,14 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
12 changes: 8 additions & 4 deletions java-checks-test-sources/java-17/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,14 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
12 changes: 8 additions & 4 deletions java-checks-test-sources/spring-3.2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,14 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,14 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes>
<exclude>src/main/java/**</exclude>
<exclude>src/test/java/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>77.0.0.2082</version>
<version>79.0.0.2165</version>
</parent>

<groupId>org.sonarsource.java</groupId>
Expand Down

0 comments on commit e6037cd

Please sign in to comment.