This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/maven-archiver.git. from df1a252 Sonar: fix reported issues new 8274e95 Update m-site-plugin to 3.9.1 and use Fluido Skin 1.9 new 734e3dd (doc) fix javadoc warnings The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: pom.xml | 24 +++++++++++++++++++++- .../org/apache/maven/archiver/MavenArchiver.java | 2 +- src/site/site.xml | 10 +++++++-- 3 files changed, 32 insertions(+), 4 deletions(-) |
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-archiver.git commit 8274e951ab0215b62f8ef2a0544a3f6a7e818e28 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Thu Jan 14 02:42:35 2021 +0100 Update m-site-plugin to 3.9.1 and use Fluido Skin 1.9 --- pom.xml | 24 +++++++++++++++++++++++- src/site/site.xml | 10 ++++++++-- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 34b519f..93bbc87 100644 --- a/pom.xml +++ b/pom.xml @@ -123,5 +123,27 @@ <scope>test</scope> </dependency> </dependencies> - + <build> + <pluginManagement> + <plugins> + <!-- remove with next parent upgrade --> + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>3.1.1</version> + </plugin> + <plugin> + <artifactId>maven-enforcer-plugin</artifactId> + <version>3.0.0-M3</version> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <version>3.2.0</version> + </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>3.9.1</version> + </plugin> + </plugins> + </pluginManagement> + </build> </project> diff --git a/src/site/site.xml b/src/site/site.xml index 7db168f..3293ef7 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -19,7 +19,13 @@ specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> +<project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 https://maven.apache.org/xsd/decoration-1.8.0.xsd"> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.9</version> + </skin> <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> @@ -27,7 +33,7 @@ under the License. <item name="Source Xref" href="xref/index.html"/> <!--item name="FAQ" href="faq.html"/--> <!-- According to https://issues.apache.org/jira/browse/MNGSITE-152 --> - <item name="License" href="http://www.apache.org/licenses/"/> + <item name="License" href="https://www.apache.org/licenses/"/> <item name="Download" href="download.html"/> </menu> |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-archiver.git commit 734e3dd15bd96084349629a0c83801b22167e662 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Thu Jan 14 02:55:52 2021 +0100 (doc) fix javadoc warnings --- src/main/java/org/apache/maven/archiver/MavenArchiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/archiver/MavenArchiver.java b/src/main/java/org/apache/maven/archiver/MavenArchiver.java index b6e91d2..5ece688 100644 --- a/src/main/java/org/apache/maven/archiver/MavenArchiver.java +++ b/src/main/java/org/apache/maven/archiver/MavenArchiver.java @@ -759,6 +759,7 @@ public class MavenArchiver * For plugins whose output is not impacted by JDK release (like maven-source-plugin), adding * Jdk spec adds unnecessary requirement on JDK version used at build to get reproducible result. * + * @param buildJdkSpecDefaultEntry the value for "Build-Jdk-Spec" entry * @since 3.5.0 */ public void setBuildJdkSpecDefaultEntry( boolean buildJdkSpecDefaultEntry ) @@ -810,7 +811,6 @@ public class MavenArchiver * @return the parsed timestamp * @since 3.5.0 * @see #parseOutputTimestamp - * @see Archiver#configureReproducible */ public Date configureReproducible( String outputTimestamp ) { |
Free forum by Nabble | Edit this page |