Skip to content

Commit 03f7aaa

Browse files
authored
Merge pull request #1028 from hazendaz/master
Move the build part onto doxia 2 (usage is still doxia 1)
2 parents a32693a + 47e9a11 commit 03f7aaa

File tree

6 files changed

+16
-30
lines changed

6 files changed

+16
-30
lines changed

pom.xml

+7-18
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,13 @@
196196
<plexusVelocityVersion>2.2.0</plexusVelocityVersion>
197197
<plexusXmlVersion>3.0.1</plexusXmlVersion>
198198

199-
<dependency-check.plugin note="11.0.0+ requires doxia 2">10.0.4</dependency-check.plugin>
200-
<fluido.version note="2.0.0+ requires doxia 2">1.12.0</fluido.version>
201-
<pluginPluginVersion note="3.15.0+ requires doxia 2">3.14.0</pluginPluginVersion>
202-
<project-info.plugin note="3.7.0+ requires doxia 2">3.6.2</project-info.plugin>
203-
<site.plugin note="3.20.0+ requires doxia 2">3.12.1</site.plugin>
204-
<versions.plugin note="2.18.0+ requires doxia 2">2.17.1</versions.plugin>
199+
<!-- TODO: Run latest dependency check as prior is throwing errors. Remove after next parent update. -->
200+
<dependency-check.plugin>12.1.0</dependency-check.plugin>
201+
202+
<!-- TODO: For running plugin, continue to use site plugin 3.12.1 -->
203+
<site.doxia1.plugin note="3.21.0+ requires doxia 2">3.12.1</site.doxia1.plugin>
204+
205+
<pluginPluginVersion>3.15.1</pluginPluginVersion>
205206

206207
<l10nPluginVersion>1.1.0</l10nPluginVersion>
207208
<codenarcPluginVersion>0.22-1</codenarcPluginVersion>
@@ -644,18 +645,6 @@
644645
</configuration>
645646
</plugin>
646647

647-
<plugin>
648-
<groupId>org.apache.maven.plugins</groupId>
649-
<artifactId>maven-site-plugin</artifactId>
650-
<dependencies>
651-
<dependency>
652-
<groupId>org.apache.maven.doxia</groupId>
653-
<artifactId>doxia-sink-api</artifactId>
654-
<version>${doxiaVersion}</version>
655-
</dependency>
656-
</dependencies>
657-
</plugin>
658-
659648
<plugin>
660649
<groupId>com.github.spotbugs</groupId>
661650
<artifactId>spotbugs-maven-plugin</artifactId>

src/it/common.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-site-plugin</artifactId>
128-
<version>@site.plugin@</version>
128+
<version>@site.doxia1.plugin@</version>
129129
</plugin>
130130
<plugin>
131131
<groupId>org.apache.maven.plugins</groupId>

src/it/empty/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<plugin>
4141
<groupId>org.apache.maven.plugins</groupId>
4242
<artifactId>maven-site-plugin</artifactId>
43-
<version>@site.plugin@</version>
43+
<version>@site.doxia1.plugin@</version>
4444
</plugin>
4545
<plugin>
4646
<groupId>org.apache.maven.plugins</groupId>

src/it/multi-build/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-site-plugin</artifactId>
45-
<version>@site.plugin@</version>
45+
<version>@site.doxia1.plugin@</version>
4646
</plugin>
4747
</plugins>
4848
</build>

src/it/skipEmpty/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-site-plugin</artifactId>
59-
<version>@site.plugin@</version>
59+
<version>@site.doxia1.plugin@</version>
6060
</plugin>
6161
<plugin>
6262
<groupId>org.apache.maven.plugins</groupId>

src/site/site.xml

+5-8
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,15 @@
1616
limitations under the License.
1717
1818
-->
19-
<project xmlns="http://maven.apache.org/DECORATION/1.8.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.1 https://maven.apache.org/xsd/decoration-1.8.1.xsd"
21-
name="SpotBugs Maven Plugin">
19+
<site name="${project.name}" xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd">
2221

23-
<bannerLeft>
24-
<name>SpotBugs Maven Plugin</name>
25-
</bannerLeft>
22+
<bannerLeft name="SpotBugs Maven Plugin" />
2623

2724
<skin>
2825
<groupId>org.apache.maven.skins</groupId>
2926
<artifactId>maven-fluido-skin</artifactId>
30-
<version>1.12.0</version>
27+
<version>2.0.1</version>
3128
</skin>
3229

3330
<custom>
@@ -75,4 +72,4 @@
7572
</menu>
7673
<menu ref="reports" />
7774
</body>
78-
</project>
75+
</site>

0 commit comments

Comments
 (0)