mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22595 GitHub release file generation script to include javadoc for each artifact in addition to full javadoc
This commit is contained in:
parent
2a3cb99f6e
commit
da83309900
1 changed files with 4 additions and 2 deletions
|
@ -13,9 +13,11 @@ function copyArtifactForGithubRelease() {
|
|||
# Copy artifacts in the output folder
|
||||
mvn dependency:copy -q -Dmdep.stripVersion=true -Dartifact=com.ibm.icu:${artifactId}:${artifact_version} -DoutputDirectory=${release_folder}
|
||||
mvn dependency:copy -q -Dmdep.stripVersion=true -Dartifact=com.ibm.icu:${artifactId}:${artifact_version}:jar:sources -DoutputDirectory=${release_folder}
|
||||
mvn dependency:copy -q -Dmdep.stripVersion=true -Dartifact=com.ibm.icu:${artifactId}:${artifact_version}:jar:javadoc -DoutputDirectory=${release_folder}
|
||||
# Change the names
|
||||
mv ${release_folder}/${artifactId}.jar ${release_folder}/${artifactId}-${github_rel_version}.jar
|
||||
mv ${release_folder}/${artifactId}-sources.jar ${release_folder}/${artifactId}-${github_rel_version}-sources.jar
|
||||
mv ${release_folder}/${artifactId}-javadoc.jar ${release_folder}/${artifactId}-${github_rel_version}-javadoc.jar
|
||||
}
|
||||
|
||||
# ====================================================================================
|
||||
|
@ -30,7 +32,7 @@ checkThatJdk8IsDefault
|
|||
|
||||
reportTitle Prepare folder with artifacts for GitHub release
|
||||
|
||||
mvn clean install -DskipITs -DskipTests -P with_sources
|
||||
mvn clean install -DskipITs -DskipTests -P with_sources,with_javadoc
|
||||
|
||||
rm -fr ${release_folder}
|
||||
mkdir -p ${release_folder}
|
||||
|
@ -45,7 +47,7 @@ reportTitle Prepare complete javadoc for GitHub release
|
|||
|
||||
mvn site -DskipITs -DskipTests -P with_full_javadoc
|
||||
|
||||
jar -Mcf ${release_folder}/icu4j-${github_rel_version}-javadoc.jar -C ${out_dir}/site/apidocs/ .
|
||||
jar -Mcf ${release_folder}/icu4j-${github_rel_version}-fulljavadoc.jar -C ${out_dir}/site/apidocs/ .
|
||||
|
||||
# ====================================================================================
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue