-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update build plugins, update references to new repo location Signed-off-by: Lukas Jungmann <[email protected]>
- Loading branch information
Showing
4 changed files
with
36 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2017, 2022 Oracle and/or its affiliates. All rights reserved. | ||
Copyright (c) 2017, 2023 Oracle and/or its affiliates. All rights reserved. | ||
This program and the accompanying materials are made available under the | ||
terms of the Eclipse Public License v. 2.0, which is available at | ||
|
@@ -21,7 +21,7 @@ | |
<parent> | ||
<groupId>org.eclipse.ee4j</groupId> | ||
<artifactId>project</artifactId> | ||
<version>1.0.7</version> | ||
<version>1.0.8</version> | ||
<relativePath/> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
@@ -34,8 +34,8 @@ | |
<properties> | ||
<site.output.dir>${project.build.directory}/staging</site.output.dir> | ||
<maven.site.skip>true</maven.site.skip> | ||
<asciidoctor.maven.plugin.version>2.2.2</asciidoctor.maven.plugin.version> | ||
<asciidoctorj.pdf.version>1.6.2</asciidoctorj.pdf.version> | ||
<asciidoctor.maven.plugin.version>2.2.4</asciidoctor.maven.plugin.version> | ||
<asciidoctorj.pdf.version>2.3.9</asciidoctorj.pdf.version> | ||
<spec.name>jakarta-${project.artifactId}-${project.version}</spec.name> | ||
<!-- status: DRAFT, BETA, etc., or blank for final --> | ||
<status>DRAFT</status> | ||
|
@@ -44,15 +44,15 @@ | |
</properties> | ||
|
||
<scm> | ||
<connection>scm:git:git:@github.com:eclipse-ee4j/saaj-api.git</connection> | ||
<developerConnection>scm:git:git:@github.com:eclipse-ee4j/saaj-api.git</developerConnection> | ||
<url>https://github.com/eclipse-ee4j/saaj-api</url> | ||
<connection>scm:git:git:@github.com:jakartaee/saaj-api.git</connection> | ||
<developerConnection>scm:git:git:@github.com:jakartaee/saaj-api.git</developerConnection> | ||
<url>https://github.com/jakartaee/saaj-api</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<distributionManagement> | ||
<site> | ||
<url>scm:git:[email protected]:eclipse-ee4j/saaj-api.git</url> | ||
<url>scm:git:[email protected]:jakartaee/saaj-api.git</url> | ||
</site> | ||
</distributionManagement> | ||
|
||
|
@@ -62,7 +62,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<version>3.4.1</version> | ||
<executions> | ||
<execution> | ||
<id>enforce-versions</id> | ||
|
@@ -145,7 +145,6 @@ | |
</executions> | ||
<configuration> | ||
<sourceDocumentName>${project.artifactId}.adoc</sourceDocumentName> | ||
<sourceHighlighter>coderay</sourceHighlighter> | ||
<attributes> | ||
<revnumber>${project.version}</revnumber> | ||
<revremark>${status}</revremark> | ||
|
@@ -154,31 +153,14 @@ | |
</configuration> | ||
|
||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>2.5.2</version> | ||
<configuration> | ||
<mavenExecutorId>forked-path</mavenExecutorId> | ||
<useReleaseProfile>false</useReleaseProfile> | ||
<arguments>${release.arguments}</arguments> | ||
</configuration> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
<artifactId>maven-scm-provider-gitexe</artifactId> | ||
<version>1.9.4</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
|
||
<!-- | ||
This is the rule that builds the zip file for download. | ||
--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<version>3.6.0</version> | ||
<inherited>false</inherited> | ||
<executions> | ||
<execution> | ||
|