Skip to content

Commit

Permalink
Adding new Maven Security configuration to release notes and last yea…
Browse files Browse the repository at this point in the history
…r release to our history
  • Loading branch information
svanteschubert authored and mistmist committed Jul 19, 2024
1 parent 57eca5c commit 87d4bdd
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ <h2 id="components-of-the-odf-toolkit-(java)">Components of the ODF Toolkit (Jav
</ol>
<p>Find our sources on <a href="https://github.com/tdf/odftoolkit">GitHub</a>. People interested should follow the <a href="mailing-lists.html">mail list</a> to track progress.</p>
<h2 id="history">History</h2>
<h3 id="2023-12-20-odf-toolkit-releases-of-0.12.0">2023-12-20 - ODF Toolkit releases of 0.12.0</h3>
<h3 id="2021-12-21-odf-toolkit-releases-of-0.11.0">2021-12-21 - ODF Toolkit releases of 0.11.0</h3>
<h3 id="2021-11-26-odf-toolkit-releases-of-0.9.0-and-0.10.0">2021-11-26 - ODF Toolkit releases of 0.9.0 and 0.10.0</h3>
<p>See the <a href="downloads.html">downloads page</a> for more details on the releases.</p>
Expand Down
14 changes: 13 additions & 1 deletion docs/release-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,19 @@ <h2 id="maven-release-guide">Maven Release Guide</h2>
<p>The release artifacts for each project are deployed to the Maven repository. Making release artefacts should follow the following steps:</p>
<h3 id="only-once-your-configuration-setup">Only once your configuration Setup</h3>
<ol>
<li> <p><strong>Maven Repro Access</strong><br>Make sure you have access to Maven repro via our <a href="https://issues.sonatype.org/browse/OSSRH-960">Sonatype JIRA issue</a>. Add your userID &amp; password to your local <a href="https://maven.apache.org/settings.html">&lt;USER_HOME&gt;/.m2/settings.xml</a>. In the end, you should be able to log in at <a href="https://oss.sonatype.org/#welcome">https://oss.sonatype.org/#welcome</a>.</p> </li>
<li><strong>Maven Repro Access</strong><br>Make sure you have access to Maven repro via our <a href="https://issues.sonatype.org/browse/OSSRH-960">Sonatype JIRA issue</a>. Add your <a href="https://oss.sonatype.org/#profile;User%20Token">user token</a> (to be found your profile of <a href="https://oss.sonatype.org">https://oss.sonatype.org</a>) to your local <a href="https://maven.apache.org/settings.html">&lt;USER_HOME&gt;/.m2/settings.xml</a> file.</li>
</ol>
<p>Something equivalent to:</p>
<div class="codehilite">
<pre><code class="language-shell"> &lt;server&gt;
&lt;id&gt;ossrh&lt;/id&gt;
&lt;username&gt;FOO&lt;/username&gt;
&lt;password&gt;BAR&lt;/password&gt;&lt;!-- being the given token --&gt;
&lt;/server&gt;
</code></pre>
</div>
<p>After this, you should be able to log in at <a href="https://oss.sonatype.org/#welcome">https://oss.sonatype.org/#welcome</a>.</p>
<ol start="2">
<li> <p><strong>Install GNU PG</strong><br>Install in your OS. <a href="https://dzone.com/articles/publish-your-artifacts-to-maven-central">See details in tutorial 'publish your artifacts to Maven'</a></p> </li>
<li> <p><strong>Configure GNU PG</strong><br>Add your GNU and JIRA credentials to your local <a href="https://maven.apache.org/settings.html">&lt;USER_HOME&gt;/.m2/settings.xml</a>. See <a href="docs/settings-example.xml">our example settings.xml</a> and search &amp; replace the placeholders starting with 'YOUR_'.</p> </li>
</ol>
Expand Down
2 changes: 2 additions & 0 deletions src/site/site/content/odftoolkit_website/index.mdtext
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 13 additions & 1 deletion src/site/site/content/odftoolkit_website/release-guide.mdtext
Original file line number Diff line number Diff line change
Expand Up @@ -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**</br>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 [&lt;USER_HOME&gt;/.m2/settings.xml](https://maven.apache.org/settings.html). In the end, you should be able to log in at <https://oss.sonatype.org/#welcome>.
1. **Maven Repro Access**</br>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 <https://oss.sonatype.org>) to your local [&lt;USER_HOME&gt;/.m2/settings.xml](https://maven.apache.org/settings.html) file.

Something equivalent to:

```shell
<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>.

2. **Install GNU PG**</br>Install in your OS. [See details in tutorial 'publish your artifacts to Maven'](https://dzone.com/articles/publish-your-artifacts-to-maven-central)

Expand Down

0 comments on commit 87d4bdd

Please sign in to comment.