diff --git a/docs/index.html b/docs/index.html index 27797c1b3..f5bdf2cec 100644 --- a/docs/index.html +++ b/docs/index.html @@ -60,6 +60,7 @@

Components of the ODF Toolkit (Jav

Find our sources on GitHub. People interested should follow the mail list to track progress.

History

+

2023-12-20 - ODF Toolkit releases of 0.12.0

2021-12-21 - ODF Toolkit releases of 0.11.0

2021-11-26 - ODF Toolkit releases of 0.9.0 and 0.10.0

See the downloads page for more details on the releases.

diff --git a/docs/release-guide.html b/docs/release-guide.html index b705946d2..2203d147a 100644 --- a/docs/release-guide.html +++ b/docs/release-guide.html @@ -57,7 +57,19 @@

Maven Release Guide

The release artifacts for each project are deployed to the Maven repository. Making release artefacts should follow the following steps:

Only once your configuration Setup

    -
  1. Maven Repro Access
    Make sure you have access to Maven repro via our Sonatype JIRA issue. Add your userID & password to your local <USER_HOME>/.m2/settings.xml. In the end, you should be able to log in at https://oss.sonatype.org/#welcome.

  2. +
  3. Maven Repro Access
    Make sure you have access to Maven repro via our Sonatype JIRA issue. Add your user token (to be found your profile of https://oss.sonatype.org) to your local <USER_HOME>/.m2/settings.xml file.
  4. +
+

Something equivalent to:

+
+
    <server>
+      <id>ossrh</id>
+      <username>FOO</username>
+      <password>BAR</password><!-- being the given token -->
+    </server>
+
+
+

After this, you should be able to log in at https://oss.sonatype.org/#welcome.

+
  1. Install GNU PG
    Install in your OS. See details in tutorial 'publish your artifacts to Maven'

  2. Configure GNU PG
    Add your GNU and JIRA credentials to your local <USER_HOME>/.m2/settings.xml. See our example settings.xml and search & replace the placeholders starting with 'YOUR_'.

diff --git a/src/site/site/content/odftoolkit_website/index.mdtext b/src/site/site/content/odftoolkit_website/index.mdtext index 89885ccdc..a70b9f504 100644 --- a/src/site/site/content/odftoolkit_website/index.mdtext +++ b/src/site/site/content/odftoolkit_website/index.mdtext @@ -28,6 +28,8 @@ People interested should follow the [mail list](mailing-lists.html) to track pro ## History +### 2023-12-20 - ODF Toolkit releases of 0.12.0 + ### 2021-12-21 - ODF Toolkit releases of 0.11.0 ### 2021-11-26 - ODF Toolkit releases of 0.9.0 and 0.10.0 diff --git a/src/site/site/content/odftoolkit_website/release-guide.mdtext b/src/site/site/content/odftoolkit_website/release-guide.mdtext index 41b4d799a..6325ea56f 100644 --- a/src/site/site/content/odftoolkit_website/release-guide.mdtext +++ b/src/site/site/content/odftoolkit_website/release-guide.mdtext @@ -11,7 +11,19 @@ The release artifacts for each project are deployed to the Maven repository. Mak ### Only once your configuration Setup -1. **Maven Repro Access**
Make sure you have access to Maven repro via our [Sonatype JIRA issue](https://issues.sonatype.org/browse/OSSRH-960). Add your userID & password to your local [<USER_HOME>/.m2/settings.xml](https://maven.apache.org/settings.html). In the end, you should be able to log in at . +1. **Maven Repro Access**
Make sure you have access to Maven repro via our [Sonatype JIRA issue](https://issues.sonatype.org/browse/OSSRH-960). Add your [user token](https://oss.sonatype.org/#profile;User%20Token) (to be found your profile of ) to your local [<USER_HOME>/.m2/settings.xml](https://maven.apache.org/settings.html) file. + +Something equivalent to: + +```shell + + ossrh + FOO + BAR + + ``` + +After this, you should be able to log in at . 2. **Install GNU PG**
Install in your OS. [See details in tutorial 'publish your artifacts to Maven'](https://dzone.com/articles/publish-your-artifacts-to-maven-central)