Skip to content

Commit 817babe

Browse files
authored
Merge pull request #824 from hazendaz/master
[IT] Cleanup the it poms
2 parents 64f229b + 4424cc7 commit 817babe

File tree

81 files changed

+428
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+428
-178
lines changed

src/it-tools/build-tools/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,14 +19,15 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
2324

2425
<groupId>spotbugs-maven-plugin.it</groupId>
2526
<artifactId>build-tools</artifactId>
26-
<name>build-tools</name>
27-
<packaging>jar</packaging>
2827
<version>testing</version>
2928

29+
<name>build-tools</name>
30+
3031
<build>
3132
<pluginManagement>
3233
<plugins>
@@ -91,8 +92,8 @@
9192
<version>@compilerPluginVersion@</version>
9293
<configuration>
9394
<debug>false</debug>
94-
<source>1.8</source>
95-
<target>1.8</target>
95+
<source>8</source>
96+
<target>8</target>
9697
<excludes>
9798
<exclude>fakeAnnotations/**</exclude>
9899
<exclude>jsr305/**</exclude>

src/it-tools/prime/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,14 +19,15 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
2324

2425
<groupId>spotbugs-maven-plugin.it</groupId>
2526
<artifactId>prime</artifactId>
26-
<name>prime</name>
27-
<packaging>jar</packaging>
2827
<version>testing</version>
2928

29+
<name>prime</name>
30+
3031
<dependencies>
3132
<!-- Override plugins to latest -->
3233
<dependency>

src/it/MFINDBUGS-145/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -38,8 +38,8 @@
3838
<url>http://maven.apache.org</url>
3939

4040
<properties>
41-
<maven.compiler.source>1.8</maven.compiler.source>
42-
<maven.compiler.target>1.8</maven.compiler.target>
41+
<maven.compiler.source>8</maven.compiler.source>
42+
<maven.compiler.target>8</maven.compiler.target>
4343

4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4545
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

src/it/MFINDBUGS-178/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>MFINDBUGS-178</artifactId>
3033
<name>MFINDBUGS-178</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<plugins>
3437
<plugin>
@@ -50,6 +53,7 @@
5053
</plugin>
5154
</plugins>
5255
</build>
56+
5357
<reporting>
5458
<excludeDefaults>true</excludeDefaults>
5559
<plugins>

src/it/basic-1/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>basic-1</artifactId>
3033
<name>basic-1</name>
31-
<packaging>jar</packaging>
34+
3235
<reporting>
3336
<excludeDefaults>true</excludeDefaults>
3437
<plugins>

src/it/change-xml-filename/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>change-xml-filename</artifactId>
3033
<name>change-xml-filename</name>
31-
<packaging>jar</packaging>
34+
3235
<reporting>
3336
<excludeDefaults>true</excludeDefaults>
3437
<plugins>

src/it/check-bug-file-multi-list/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-bug-file-multi-list</artifactId>
3033
<name>check-bug-file-multi-list</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<extensions>
3437
<extension>

src/it/check-bug-file-multi/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-bug-file-multi</artifactId>
3033
<name>check-bug-file-multi</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<extensions>
3437
<extension>

src/it/check-bug-file/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-bug-file</artifactId>
3033
<name>check-bug-file</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<extensions>
3437
<extension>

src/it/check-bug-only-test-sources/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,18 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-bug-only-test-sources</artifactId>
3033
<name>check-bug-only-test-sources</name>
31-
<packaging>jar</packaging>
3234

3335
<build>
3436
<sourceDirectory>src/main</sourceDirectory><!-- empty main source directory -->

src/it/check-fail/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-fail</artifactId>
3033
<name>check-fail</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<plugins>
3437
<plugin>

src/it/check-failThreshold/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-failThreshold</artifactId>
3033
<name>check-failThreshold</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<plugins>
3437
<plugin>

src/it/check-jvmargs/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2005-2023 the original author or authors.
4+
Copyright 2005-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -19,16 +19,19 @@
1919

2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22+
2223
<modelVersion>4.0.0</modelVersion>
24+
2325
<parent>
2426
<groupId>spotbugs-maven-plugin.it</groupId>
2527
<artifactId>common</artifactId>
2628
<version>testing</version>
2729
<relativePath>../common.xml</relativePath>
2830
</parent>
31+
2932
<artifactId>check-jvmargs</artifactId>
3033
<name>check-jvmargs</name>
31-
<packaging>jar</packaging>
34+
3235
<build>
3336
<plugins>
3437
<plugin>

0 commit comments

Comments
 (0)