-
-
Notifications
You must be signed in to change notification settings - Fork 768
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ICU-22606 Correct urls in the scm entry; fix JCite styles in javadoc
1. The flatten plugin appended the relative module paths to the URLs in <scm>. The same kind of problem solved earlier with ${proj.url}, and fixed the same way. I was unable to find any way to tell the plugin to not do that append, even after reading some of the plugin code. 2. The stylesheet containing the JCite styles was not copied in the generated javadoc. The first part of our custom stylesheet is 100% the same as the oficial one. So the only part that was visually affected was the code produced by JCite. The code still used <pre> and <code>, so it was monospaced and well indented / wrapped, but no syntax colors.
- Loading branch information
Showing
4 changed files
with
22 additions
and
4 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 |
---|---|---|
|
@@ -67,6 +67,9 @@ | |
<proj-title>International Components for Unicode for Java</proj-title> | ||
<proj.displayname>${project.artifactId}</proj.displayname> | ||
<proj.url>https://icu.unicode.org/</proj.url> | ||
<proj.scm.connection>scm:git:git://github.com/unicode-org/icu.git</proj.scm.connection> | ||
<proj.scm.developerConnection>scm:git:[email protected]:unicode-org/icu.git</proj.scm.developerConnection> | ||
<proj.scm.url>https://github.com/unicode-org/icu</proj.scm.url> | ||
|
||
<!-- Version update! --> | ||
<icu.major.version>76</icu.major.version> | ||
|
@@ -159,9 +162,9 @@ | |
</mailingLists> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/unicode-org/icu.git</connection> | ||
<developerConnection>scm:git:[email protected]:unicode-org/icu.git</developerConnection> | ||
<url>https://github.com/unicode-org/icu</url> | ||
<connection>${proj.scm.connection}</connection> | ||
<developerConnection>${proj.scm.developerConnection}</developerConnection> | ||
<url>${proj.scm.url}</url> | ||
</scm> | ||
|
||
<issueManagement> | ||
|
@@ -373,7 +376,7 @@ | |
<doctitle>${icu4j.api.doc.window.title}</doctitle> | ||
<header>${icu4j.api.doc.header}</header> | ||
<bottom>${icu4j.api.doc.copyright.footer}</bottom> | ||
<stylesheetfile>stylesheet8.css</stylesheetfile> | ||
<stylesheetfile>${icu4j.api.doc.root.dir}/stylesheet8.css</stylesheetfile> | ||
<encoding>UTF-8</encoding> | ||
<docencoding>UTF-8</docencoding> | ||
<charset>UTF-8</charset> | ||
|