mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
ICU-22606 Make the ICU4J release easier & more predictable
This commit is contained in:
parent
6645cc4935
commit
eda184e6af
19 changed files with 282 additions and 147 deletions
115
.github/workflows/maven-publish.yml
vendored
Normal file
115
.github/workflows/maven-publish.yml
vendored
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
|
||||||
|
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
|
||||||
|
|
||||||
|
name: Publish to Nexus Sonatype OSS
|
||||||
|
|
||||||
|
# For this to run you should define the follwing GitHub Secrets in the proper Environment.
|
||||||
|
# In Settings -- Environments -- release_env -- Environment secrets:
|
||||||
|
# * MAVEN_CENTRAL_USERNAME & MAVEN_CENTRAL_TOKEN:
|
||||||
|
# * Go to https://oss.sonatype.org and login with the `icu-robot` user
|
||||||
|
# * Top-right select "Profile"
|
||||||
|
# * Open the drop-down list showing "Summary" and select "User Token"
|
||||||
|
# * Click the "Access User Token" button
|
||||||
|
# * The `username` (first, shorter part of the token) goes in the `MAVEN_CENTRAL_USERNAME` secret
|
||||||
|
# * The `password` (second, longer part of the token) goes in the `MAVEN_CENTRAL_TOKEN` secret
|
||||||
|
# * MAVEN_GPG_PRIVATE_KEY: an ASCII dump of the GPG private signing key:
|
||||||
|
# `gpg --output icu_release_signing.asc --armor --export-secret-key <key_id>`
|
||||||
|
# * MAVEN_GPG_PASSPHRASE: the GPG password used to protect that key
|
||||||
|
|
||||||
|
on:
|
||||||
|
# To trigger the Env Test workflow manually, follow the instructions in
|
||||||
|
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
gitTag:
|
||||||
|
# TODO: make this mandatory and validate that it is in a release* branch and looks like
|
||||||
|
# 'release-\d+.\d+ or something like that.
|
||||||
|
# For now we don't do it so that we can test.
|
||||||
|
description: 'Git tag at which to sync for deploy and release'
|
||||||
|
type: string
|
||||||
|
|
||||||
|
env:
|
||||||
|
SHARED_MVN_ARGS: '--no-transfer-progress --show-version --batch-mode'
|
||||||
|
RELEASE_FOLDER: 'target/release_files'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: release-env
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout repo files
|
||||||
|
uses: actions/checkout@v4.1.7
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
|
||||||
|
- name: Set up JDK
|
||||||
|
uses: actions/setup-java@v4.2.2
|
||||||
|
with:
|
||||||
|
java-version: '8' # The custom Taglets for javadoc (tools/build) are still Java 8. They need updating to use a different JDK version.
|
||||||
|
distribution: 'temurin'
|
||||||
|
server-id: icu4j-maven-repo # Value of the distributionManagement/repository/id field of the pom.xml
|
||||||
|
server-username: MAVEN_USERNAME # env variable for username in deploy
|
||||||
|
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy
|
||||||
|
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
|
||||||
|
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
|
||||||
|
settings-path: ${{ github.workspace }} # location for the settings.xml file
|
||||||
|
|
||||||
|
# TODO: enable tests? We don't want to release until we are 100% sure everything works.
|
||||||
|
- name: Build all of ICU
|
||||||
|
run: |
|
||||||
|
# Really important to do this first because we need `tools/build` for the javadoc applets
|
||||||
|
mvn install --file icu4j/tools/build \
|
||||||
|
${SHARED_MVN_ARGS} \
|
||||||
|
-DskipTests -DskipITs
|
||||||
|
|
||||||
|
- name: Build and deploy to Maven Central
|
||||||
|
run: |
|
||||||
|
mvn deploy --file icu4j \
|
||||||
|
${SHARED_MVN_ARGS} \
|
||||||
|
--settings $GITHUB_WORKSPACE/settings.xml \
|
||||||
|
--errors --fail-at-end -DdeployAtEnd=true \
|
||||||
|
-DskipTests -DskipITs \
|
||||||
|
-P with_sources,with_javadoc,with_signature
|
||||||
|
env:
|
||||||
|
MAVEN_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
|
||||||
|
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
|
||||||
|
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
|
||||||
|
|
||||||
|
# These are files that will end in the "Release" section of the GitHub repo.
|
||||||
|
# So the jar files published in GitHub are binary identical to the ones in Maven Central.
|
||||||
|
- name: Prepare release folder
|
||||||
|
run: |
|
||||||
|
pushd icu4j
|
||||||
|
ICU_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
|
||||||
|
# Copy the artifacts (with sources and javdoc .jar files) to the release folder
|
||||||
|
mvn dependency:copy \
|
||||||
|
${SHARED_MVN_ARGS} \
|
||||||
|
-DskipTests -DskipITs \
|
||||||
|
-Drelease.directory=${RELEASE_FOLDER} \
|
||||||
|
-P release_files
|
||||||
|
# Build the full javadoc to be posted on the public site
|
||||||
|
mvn site \
|
||||||
|
${SHARED_MVN_ARGS} \
|
||||||
|
-DskipITs -DskipTests \
|
||||||
|
-P with_full_javadoc
|
||||||
|
jar -Mcf ${RELEASE_FOLDER}/icu4j-${ICU_VERSION}-fulljavadoc.jar \
|
||||||
|
-C target/site/apidocs/ .
|
||||||
|
# Create the file with MD5 checksums
|
||||||
|
pushd ${RELEASE_FOLDER}
|
||||||
|
md5sum *.jar > icu4j-${ICU_VERSION}.md5
|
||||||
|
popd # out of $RELEASE_FOLDER
|
||||||
|
popd # out of icu4j
|
||||||
|
|
||||||
|
# TODO: add them to the GitHub "Release" page automatically
|
||||||
|
- name: Upload build results
|
||||||
|
uses: actions/upload-artifact@v4.3.6
|
||||||
|
with:
|
||||||
|
path: ./icu4j/${{ env.RELEASE_FOLDER }}/*
|
||||||
|
retention-days: 3 # TBD if we want to keep them longer
|
||||||
|
overwrite: true
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -80,6 +80,7 @@ pkgdata.inc
|
||||||
pkgdataMakefile
|
pkgdataMakefile
|
||||||
rules.mk
|
rules.mk
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.flattened-pom.xml
|
||||||
|
|
||||||
!icu4c/source/samples/csdet/Makefile
|
!icu4c/source/samples/csdet/Makefile
|
||||||
|
|
||||||
|
|
|
@ -37,13 +37,6 @@
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
<artifactId>icu4j-charset</artifactId>
|
<artifactId>icu4j-charset</artifactId>
|
||||||
<description>icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI.</description>
|
<description>icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI.</description>
|
||||||
|
<url>${proj.url}</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir>
|
<icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir>
|
||||||
|
@ -70,6 +71,17 @@
|
||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<!-- We want to deploy this to Maven -->
|
||||||
|
<configuration>
|
||||||
|
<skip>false</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -67,16 +67,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -103,13 +103,6 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -90,13 +90,6 @@
|
||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -27,16 +27,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -47,13 +47,6 @@
|
||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
<artifactId>icu4j</artifactId>
|
<artifactId>icu4j</artifactId>
|
||||||
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
|
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
|
||||||
providing Unicode and Globalization support</description>
|
providing Unicode and Globalization support</description>
|
||||||
|
<url>${proj.url}</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir>
|
<icu4j.api.doc.root.dir>${project.basedir}/../..</icu4j.api.doc.root.dir>
|
||||||
|
@ -114,6 +115,17 @@
|
||||||
</filesets>
|
</filesets>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<!-- We want to deploy this to Maven -->
|
||||||
|
<configuration>
|
||||||
|
<skip>false</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -27,16 +27,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
<artifactId>icu4j-localespi</artifactId>
|
<artifactId>icu4j-localespi</artifactId>
|
||||||
<description>icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI.</description>
|
<description>icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI.</description>
|
||||||
|
<url>${proj.url}</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<proj.displayname>JDK locale service provider</proj.displayname>
|
<proj.displayname>JDK locale service provider</proj.displayname>
|
||||||
|
@ -185,6 +186,19 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<!-- We want to deploy this to Maven -->
|
||||||
|
<configuration>
|
||||||
|
<skip>false</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -27,16 +27,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -62,16 +62,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-cli</groupId>
|
<groupId>commons-cli</groupId>
|
||||||
<artifactId>commons-cli</artifactId>
|
<artifactId>commons-cli</artifactId>
|
||||||
<version>1.7.0</version>
|
<version>${commons-cli.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
@ -63,13 +63,6 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
150
icu4j/pom.xml
150
icu4j/pom.xml
|
@ -15,7 +15,7 @@
|
||||||
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
|
<description>International Components for Unicode for Java (ICU4J) is a mature, widely used Java library
|
||||||
providing Unicode and Globalization support.
|
providing Unicode and Globalization support.
|
||||||
This is the base artifact with common settings, not intended to use directly.</description>
|
This is the base artifact with common settings, not intended to use directly.</description>
|
||||||
<url>https://icu.unicode.org/</url>
|
<url>${proj.url}</url>
|
||||||
<inceptionYear>1995</inceptionYear>
|
<inceptionYear>1995</inceptionYear>
|
||||||
|
|
||||||
<organization>
|
<organization>
|
||||||
|
@ -56,12 +56,17 @@
|
||||||
<maven-central-releases-repo-url>${maven-central-repo-url}/service/local/staging/deploy/maven2</maven-central-releases-repo-url>
|
<maven-central-releases-repo-url>${maven-central-repo-url}/service/local/staging/deploy/maven2</maven-central-releases-repo-url>
|
||||||
<maven-central-snapshots-repo-url>${maven-central-repo-url}/content/repositories/snapshots</maven-central-snapshots-repo-url>
|
<maven-central-snapshots-repo-url>${maven-central-repo-url}/content/repositories/snapshots</maven-central-snapshots-repo-url>
|
||||||
|
|
||||||
|
<!-- This is the folder where we gather the files to be posted in the Github Release-->
|
||||||
|
<release.directory>${project.build.directory}/release_directory</release.directory>
|
||||||
|
|
||||||
<junit.version>4.13.2</junit.version>
|
<junit.version>4.13.2</junit.version>
|
||||||
<junitparams.version>1.1.1</junitparams.version>
|
<junitparams.version>1.1.1</junitparams.version>
|
||||||
<gson.version>2.10.1</gson.version>
|
<gson.version>2.11.0</gson.version>
|
||||||
|
<commons-cli.version>1.9.0</commons-cli.version>
|
||||||
|
|
||||||
<proj-title>International Components for Unicode for Java</proj-title>
|
<proj-title>International Components for Unicode for Java</proj-title>
|
||||||
<proj.displayname>${project.artifactId}</proj.displayname>
|
<proj.displayname>${project.artifactId}</proj.displayname>
|
||||||
|
<proj.url>https://icu.unicode.org/</proj.url>
|
||||||
|
|
||||||
<!-- Version update! -->
|
<!-- Version update! -->
|
||||||
<icu.major.version>76</icu.major.version>
|
<icu.major.version>76</icu.major.version>
|
||||||
|
@ -166,12 +171,12 @@
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>icu4j-releases</id>
|
<id>icu4j-maven-repo</id>
|
||||||
<name>ICU4J Central Repository</name>
|
<name>ICU4J Central Repository</name>
|
||||||
<url>${maven-central-releases-repo-url}</url>
|
<url>${maven-central-releases-repo-url}</url>
|
||||||
</repository>
|
</repository>
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>icu4j-snapshots</id>
|
<id>icu4j-maven-repo</id>
|
||||||
<name>ICU4J Central Development Repository</name>
|
<name>ICU4J Central Development Repository</name>
|
||||||
<url>${maven-central-snapshots-repo-url}</url>
|
<url>${maven-central-snapshots-repo-url}</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
|
@ -182,7 +187,7 @@
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-clean-plugin</artifactId>
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
<version>3.3.1</version>
|
<version>3.4.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
@ -190,7 +195,7 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.11.0</version>
|
<version>3.13.0</version>
|
||||||
<!-- Plugin bug, maven.compiler.* properties are not honored, see
|
<!-- Plugin bug, maven.compiler.* properties are not honored, see
|
||||||
https://issues.apache.org/jira/browse/MCOMPILER-545
|
https://issues.apache.org/jira/browse/MCOMPILER-545
|
||||||
-->
|
-->
|
||||||
|
@ -201,7 +206,7 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>3.1.2</version>
|
<version>3.4.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<includes>
|
<includes>
|
||||||
<!-- Some test files start with "IntlTest...". Many don't fit
|
<!-- Some test files start with "IntlTest...". Many don't fit
|
||||||
|
@ -218,48 +223,48 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-failsafe-plugin</artifactId>
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
<version>3.1.2</version>
|
<version>3.4.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
<version>3.1.1</version>
|
<version>3.1.3</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
<version>3.1.1</version>
|
<version>3.1.3</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-site-plugin</artifactId>
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
<version>4.0.0-M9</version>
|
<version>4.0.0-M16</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.3.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-gpg-plugin</artifactId>
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.2.5</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
<version>3.4.5</version>
|
<version>3.7.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
<version>3.5.0</version>
|
<version>3.6.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>3.6.0</version>
|
<version>3.7.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
<version>3.6.0</version>
|
<version>3.8.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
<version>3.4.0</version>
|
<version>3.6.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<!-- Workaround for Windows symlink issue:
|
<!-- Workaround for Windows symlink issue:
|
||||||
|
@ -302,11 +307,35 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-release-plugin</artifactId>
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>3.1.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||||||
|
<version>1.6.0</version>
|
||||||
|
<configuration>
|
||||||
|
<flattenMode>ossrh</flattenMode>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>flatten</id>
|
||||||
|
<phase>process-resources</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>flatten</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>flatten.clean</id>
|
||||||
|
<phase>clean</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>clean</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.5.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>enforce-maven</id>
|
<id>enforce-maven</id>
|
||||||
|
@ -316,7 +345,7 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<rules>
|
<rules>
|
||||||
<requireMavenVersion>
|
<requireMavenVersion>
|
||||||
<version>3.2.5</version>
|
<version>3.6.3</version>
|
||||||
</requireMavenVersion>
|
</requireMavenVersion>
|
||||||
</rules>
|
</rules>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -325,7 +354,7 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.5.0</version>
|
<version>3.8.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<excludePackageNames>com.ibm.icu.impl,com.ibm.icu.impl.*,com.ibm.icu.dev.*,com.ibm.icu.samples,com.ibm.icu.samples.*</excludePackageNames>
|
<excludePackageNames>com.ibm.icu.impl,com.ibm.icu.impl.*,com.ibm.icu.dev.*,com.ibm.icu.samples,com.ibm.icu.samples.*</excludePackageNames>
|
||||||
<!--
|
<!--
|
||||||
|
@ -350,6 +379,8 @@
|
||||||
<charset>UTF-8</charset>
|
<charset>UTF-8</charset>
|
||||||
<breakiterator>true</breakiterator>
|
<breakiterator>true</breakiterator>
|
||||||
<use>true</use>
|
<use>true</use>
|
||||||
|
<maxmemory>256m</maxmemory>
|
||||||
|
<minmemory>256m</minmemory>
|
||||||
<!-- <verbose>true</verbose> -->
|
<!-- <verbose>true</verbose> -->
|
||||||
<additionalJOptions>
|
<additionalJOptions>
|
||||||
<additionalJOption>-J-Djcitesourcepath=${icu4j.api.doc.root.dir}/samples/src/main/java${path.separator}${icu4j.api.doc.root.dir}/demos/src/main/java${path.separator}${icu4j.api.doc.root.dir}/main/core/src/main/java</additionalJOption>
|
<additionalJOption>-J-Djcitesourcepath=${icu4j.api.doc.root.dir}/samples/src/main/java${path.separator}${icu4j.api.doc.root.dir}/demos/src/main/java${path.separator}${icu4j.api.doc.root.dir}/main/core/src/main/java</additionalJOption>
|
||||||
|
@ -400,7 +431,7 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.4.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
|
@ -432,7 +463,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.4.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
|
@ -685,6 +716,77 @@
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<id>release_files</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<outputDirectory>${release.directory}</outputDirectory>
|
||||||
|
<overWriteReleases>true</overWriteReleases>
|
||||||
|
<overWriteSnapshots>true</overWriteSnapshots>
|
||||||
|
<artifactItems>
|
||||||
|
<!-- icu4j -->
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>sources</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>javadoc</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
<!-- icu4j-charset -->
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-charset</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-charset</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>sources</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-charset</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>javadoc</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
<!-- icu4j-localespi -->
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-localespi</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-localespi</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>sources</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>com.ibm.icu</groupId>
|
||||||
|
<artifactId>icu4j-localespi</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>javadoc</classifier>
|
||||||
|
</artifactItem>
|
||||||
|
</artifactItems>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -32,13 +32,6 @@
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
|
|
@ -28,16 +28,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-cli</groupId>
|
<groupId>commons-cli</groupId>
|
||||||
<artifactId>commons-cli</artifactId>
|
<artifactId>commons-cli</artifactId>
|
||||||
<version>1.7.0</version>
|
<version>${commons-cli.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
@ -48,13 +48,6 @@
|
||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<!-- We don't want to deploy this to Maven -->
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue