Skip to content

Commit 3f53f66

Browse files
Try parent 46
1 parent 19c7fa2 commit 3f53f66

File tree

2 files changed

+44
-33
lines changed

2 files changed

+44
-33
lines changed

its/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache</groupId>
2525
<artifactId>apache</artifactId>
26-
<version>35</version>
26+
<version>36-SNAPSHOT</version>
2727
<relativePath />
2828
</parent>
2929

pom.xml

Lines changed: 43 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven</groupId>
2525
<artifactId>maven-parent</artifactId>
26-
<version>45</version>
26+
<version>46-SNAPSHOT</version>
2727
<relativePath />
2828
</parent>
2929

@@ -689,6 +689,17 @@ under the License.
689689
</dependencies>
690690
<!--bootstrap-start-comment-->
691691
</dependencyManagement>
692+
693+
<repositories>
694+
<repository>
695+
<releases>
696+
<enabled>false</enabled>
697+
</releases>
698+
<id>apache.snapshots</id>
699+
<name>Apache Snapshot Repository</name>
700+
<url>https://repository.apache.org/snapshots</url>
701+
</repository>
702+
</repositories>
692703
<!--bootstrap-end-comment-->
693704

694705
<build>
@@ -804,6 +815,37 @@ under the License.
804815
</dependency>
805816
</dependencies>
806817
</plugin>
818+
<plugin>
819+
<groupId>org.apache.rat</groupId>
820+
<artifactId>apache-rat-plugin</artifactId>
821+
<configuration>
822+
<inputExcludes>
823+
<exclude>Jenkinsfile</exclude>
824+
<exclude>**/.gitattributes</exclude>
825+
<exclude>src/test/resources*/**</exclude>
826+
<exclude>src/test/projects/**</exclude>
827+
<exclude>src/test/remote-repo/**</exclude>
828+
<exclude>its/**</exclude>
829+
<exclude>**/*.odg</exclude>
830+
<exclude>**/*.svg</exclude>
831+
<exclude>.asf.yaml</exclude>
832+
<exclude>.mvn/**</exclude>
833+
<exclude>.jbang/**</exclude>
834+
<!--
835+
! Excluded the license files itself cause they do not have a license of themselves.
836+
-->
837+
<exclude>src/main/appended-resources/licenses/EPL-1.0.txt</exclude>
838+
<exclude>src/main/appended-resources/licenses/unrecognized-aopalliance-1.0.txt</exclude>
839+
<exclude>src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt</exclude>
840+
</inputExcludes>
841+
</configuration>
842+
<executions>
843+
<execution>
844+
<id>rat-check</id>
845+
<inherited>false</inherited>
846+
</execution>
847+
</executions>
848+
</plugin>
807849
</plugins>
808850
</pluginManagement>
809851
<plugins>
@@ -826,37 +868,6 @@ under the License.
826868
</asfExtOptions>
827869
</configuration>
828870
</plugin>
829-
<plugin>
830-
<groupId>org.apache.rat</groupId>
831-
<artifactId>apache-rat-plugin</artifactId>
832-
<executions>
833-
<execution>
834-
<id>rat-check</id>
835-
<inherited>false</inherited>
836-
<configuration>
837-
<excludes>
838-
<exclude>Jenkinsfile</exclude>
839-
<exclude>**/.gitattributes</exclude>
840-
<exclude>src/test/resources*/**</exclude>
841-
<exclude>src/test/projects/**</exclude>
842-
<exclude>src/test/remote-repo/**</exclude>
843-
<exclude>its/**</exclude>
844-
<exclude>**/*.odg</exclude>
845-
<exclude>**/*.svg</exclude>
846-
<exclude>.asf.yaml</exclude>
847-
<exclude>.mvn/**</exclude>
848-
<exclude>.jbang/**</exclude>
849-
<!--
850-
! Excluded the license files itself cause they do not have have a license of themselves.
851-
-->
852-
<exclude>src/main/appended-resources/licenses/EPL-1.0.txt</exclude>
853-
<exclude>src/main/appended-resources/licenses/unrecognized-aopalliance-1.0.txt</exclude>
854-
<exclude>src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt</exclude>
855-
</excludes>
856-
</configuration>
857-
</execution>
858-
</executions>
859-
</plugin>
860871
<plugin>
861872
<groupId>org.apache.maven.plugins</groupId>
862873
<artifactId>maven-enforcer-plugin</artifactId>

0 commit comments

Comments
 (0)