Skip to content

Commit 684aaf3

Browse files
committed
Fix the maven plugin documentation.
Signed-off-by: James R. Perkins <jperkins@redhat.com>
1 parent 1d17d3d commit 684aaf3

File tree

4 files changed

+46
-8
lines changed

4 files changed

+46
-8
lines changed

pom.xml

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,32 @@
4343
<licenses>
4444
<license>
4545
<name>Apache License 2.0</name>
46-
<url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
46+
<url>https://repository.jboss.org/licenses/apache-2.0.txt</url>
4747
<distribution>repo</distribution>
4848
</license>
4949
</licenses>
5050

51+
<url>https://wildscribe.github.io</url>
52+
53+
<mailingLists>
54+
<mailingList>
55+
<name>JBoss User List</name>
56+
<subscribe>https://lists.jboss.org/mailman/listinfo/jboss-user</subscribe>
57+
<unsubscribe>https://lists.jboss.org/mailman/listinfo/jboss-user</unsubscribe>
58+
<archive>http://lists.jboss.org/pipermail/jboss-user/</archive>
59+
</mailingList>
60+
<mailingList>
61+
<name>WildFly Developer List</name>
62+
<subscribe>https://lists.jboss.org/mailman/listinfo/wildfly-dev</subscribe>
63+
<unsubscribe>https://lists.jboss.org/mailman/listinfo/wildfly-dev</unsubscribe>
64+
<archive>http://lists.jboss.org/pipermail/wildfly-dev/</archive>
65+
</mailingList>
66+
</mailingLists>
67+
5168
<properties>
5269
<!-- Require at least Java 11 to compile -->
5370
<jdk.min.version>11</jdk.min.version>
54-
<maven.compiler.target>11</maven.compiler.target>
55-
<maven.compiler.source>11</maven.compiler.source>
71+
<maven.compiler.release>11</maven.compiler.release>
5672

5773
<!--
5874
Dependency versions. Please keep alphabetical.
@@ -99,6 +115,17 @@
99115
<module>wildscribe-maven-plugin</module>
100116
</modules>
101117

118+
<scm>
119+
<connection>scm:git://github.com/wildscribe/wildscribe.git</connection>
120+
<developerConnection>scm:git://github.com/wildscribe/wildscribe.git</developerConnection>
121+
<url>https://github.com/wildscribe/wildscribe</url>
122+
</scm>
123+
124+
<issueManagement>
125+
<system>GitHub Issues</system>
126+
<url>https://github.com/wildscribe/wildscribe/issues</url>
127+
</issueManagement>
128+
102129
<build>
103130
<plugins>
104131
<plugin>

wildscribe-maven-plugin/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<packaging>maven-plugin</packaging>
3030

3131
<prerequisites>
32-
<maven>3.6.0</maven>
32+
<maven>${maven.min.version}</maven>
3333
</prerequisites>
3434

3535
<properties>
@@ -38,6 +38,7 @@
3838
<!-- documentation properties -->
3939
<appServerName>WildFly</appServerName>
4040
<pluginPrefix>wildscribe</pluginPrefix>
41+
<mavenMinVersion>${maven.min.version}</mavenMinVersion>
4142

4243
<wildfly.scm.connection>scm:git://github.com/wildscribe/wildscribe.git</wildfly.scm.connection>
4344
<wildfly.scm.developer.connection>scm:git:git@github.com:wildscribe/wildscribe.git
@@ -111,6 +112,16 @@
111112
<artifactId>maven-plugin-plugin</artifactId>
112113
<version>${version.plugin.plugin}</version>
113114
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-plugin-report-plugin</artifactId>
118+
<version>${version.plugin.plugin}</version>
119+
</plugin>
120+
<plugin>
121+
<groupId>org.apache.maven.plugins</groupId>
122+
<artifactId>maven-project-info-reports-plugin</artifactId>
123+
<version>3.4.1</version>
124+
</plugin>
114125
</plugins>
115126
</reporting>
116127

wildscribe-maven-plugin/src/site/apt/index.apt.vm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ ${project.name} (${project.artifactId})
2828
{{{http://wildfly.org/joinus}${appServerName} wiki page}}.
2929

3030
In case you still have questions regarding the plugin's usage, please have a look at the {{{./faq.html}FAQ}} and feel
31-
free to contact the {{{./mail-lists.html}user mailing list}}. The posts to the mailing list are archived and could
31+
free to contact the {{{./mailing-lists.html}user mailing list}}. The posts to the mailing list are archived and could
3232
already contain the answer to your question as part of an older thread. Hence, it is also worth browsing/searching
33-
the {{{./mail-lists.html}mail archive}}.
33+
the {{{./mailing-lists.html}mail archive}}.
3434

3535
If you feel like the plugin is missing a feature or has a defect, you can fill a feature request or bug report in our
36-
{{{./issue-tracking.html}issue tracker}}. When creating a new issue, please provide a comprehensive description of your
36+
{{{./issue-management.html}issue tracker}}. When creating a new issue, please provide a comprehensive description of your
3737
concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem. For this reason,
3838
entire debug logs, POMs or most preferably little demo projects attached to the issue are very much appreciated.
3939
Of course, patches are welcome, too. Contributors can check out the project from our

wildscribe-maven-plugin/src/site/fml/faq.fml renamed to wildscribe-maven-plugin/src/site/fml/faq.fml.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<faq id="maven3">
2626
<question>What versions of maven will the plugin work with?</question>
2727
<answer>
28-
<p>The plugin requires maven 3.5.2 or higher.</p>
28+
<p>The plugin requires maven ${mavenMinVersion} or higher.</p>
2929
</answer>
3030
</faq>
3131
</part>

0 commit comments

Comments
 (0)