Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
ab18e73
RAT-530: Switch to 0.18 SNAPSHOT
ottlinger Dec 27, 2025
0575662
RAT-530: Switch to 0.18 SNAPSHOT
ottlinger Dec 27, 2025
d7395d2
Revert "RAT-530: Switch to 0.18 SNAPSHOT"
ottlinger Dec 27, 2025
b0a5fb8
RAT-530: prepare site for 018
ottlinger Dec 27, 2025
5fbf261
RAT-530: Adapt changelog for 0.18
ottlinger Dec 30, 2025
b921c76
RAT-530: Prepare for a 0.18 release
ottlinger Dec 30, 2025
fbdc26a
Merge branch 'master' into feature/RAT-530
ottlinger Jan 6, 2026
4cf6ddc
Bump org.apache:apache from 35 to 36
dependabot[bot] Jan 7, 2026
1222485
RAT-498: Raise minimal Maven version to be compliant with ASF parent …
ottlinger Jan 7, 2026
b24ed88
RAT-293: Add more logging to sonarcloud problems
ottlinger Jan 7, 2026
13ffd24
RAT-440: Add changelog entry about doxia/xhtml upgrade
ottlinger Jan 25, 2026
eb381de
Merge branch 'master' into feature/RAT-530
ottlinger Jan 29, 2026
ecb7acb
RAT-293: Try adding sonar.org manually
ottlinger Jan 29, 2026
fab2ea9
RAT-293, INFRA-27608: Switch to org level repo secret
ottlinger Jan 31, 2026
42e05d7
Bump org.apache.maven.plugins:maven-compiler-plugin
dependabot[bot] Feb 2, 2026
91bf690
INFRA-27608, RAT-293: Add debug step for sonarcloud secret
ottlinger Feb 2, 2026
a4a06cd
INFRA-27608, RAT-293: Tweak branch configuration to see if secrets ar…
ottlinger Feb 2, 2026
18862c2
INFRA-27608, RAT-293: Document that secrets are not visible if branch…
ottlinger Feb 2, 2026
e9a71d5
RAT-293: Reduce log noise in sonarcloud build step
ottlinger Feb 2, 2026
9696f35
RAT-293: Do not run SonarCloud scan if triggered by dependabot
ottlinger Feb 2, 2026
93771f4
RAT-293: Do not run SonarCloud scan if triggered by dependabot
ottlinger Feb 2, 2026
ee5bbab
RAT-293: Remove debugging output
ottlinger Feb 2, 2026
8143f45
RAT-293: Try to fix the master sonarcloud build
ottlinger Feb 3, 2026
897ef77
Bump com.gradle:develocity-maven-extension from 2.3.2 to 2.3.3
dependabot[bot] Feb 2, 2026
6f6ba0d
Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness
dependabot[bot] Feb 9, 2026
f619167
Bump org.apache.maven.plugins:maven-dependency-plugin
dependabot[bot] Feb 9, 2026
7006552
Bump com.gradle:develocity-maven-extension from 2.3.3 to 2.3.4
dependabot[bot] Feb 12, 2026
a04c6e5
Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.4 to 3.5.5
dependabot[bot] Feb 23, 2026
13d55eb
Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.4 to 3.5.5
dependabot[bot] Feb 23, 2026
a9902a6
Bump actions/upload-artifact from 6 to 7
dependabot[bot] Feb 27, 2026
709cbac
Bump org.mockito:mockito-bom from 5.21.0 to 5.22.0
dependabot[bot] Mar 2, 2026
0a0d825
Bump org.apache.maven.plugins:maven-resources-plugin from 3.4.0 to 3.5.0
dependabot[bot] Mar 6, 2026
b8bdabf
Bump mavenVersion from 3.9.12 to 3.9.13
dependabot[bot] Mar 9, 2026
5a3cd59
RAT-530: Adapt download page to current regulations, checksums from d…
ottlinger Mar 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildtools/generateStagingSiteInWebpageRepo
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
./mvnw -B package site site:stage

# DEVHINT: with trailing slash please!
targetDirectory=../creadur-site/rat100/
targetDirectory=../creadur-site/rat018/

echo "Copying site resources into asf-site repo under $targetDirectory"
cp -rvf target/staging/* $targetDirectory > /dev/null
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: ./mvnw -e -B -V -ntp clean install

- name: Archive integration failure
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: reporting-integration-test-failure-logs-${{ matrix.os }}-JDK${{ matrix.java }}-PR${{ github.run_id }}
Expand All @@ -72,7 +72,7 @@ jobs:
apache-rat-core/target/test-classes/ReportTest/**

- name: Archive test failure
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: failure()
with:
name: test-failure-logs-${{ matrix.os }}-JDK${{ matrix.java }}-PR${{ github.run_id }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: SonarQube
on:
push:
# RAT-293: Global secrets are not visible on dependabot runs thus block if triggered by Dependabot
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
if: github.actor != 'dependabot[bot]'
name: Build and analyze
runs-on: ubuntu-latest
steps:
Expand All @@ -32,5 +34,5 @@ jobs:
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze at ASF-sonarcloud
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -X -e verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=apache_creadur-rat -Dsonar.token=${SONAR_TOKEN}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
run: ./mvnw verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=apache_creadur-rat -Dsonar.organization=apache -Dsonar.token=${SONAR_TOKEN}
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<extension>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>2.3.2</version>
<version>2.3.4</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
Expand Down
2 changes: 1 addition & 1 deletion apache-rat-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat-core</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import org.apache.rat.utils.DefaultLog;
import org.apache.rat.utils.Log;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.CleanupMode;
import org.junit.jupiter.api.io.TempDir;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import org.apache.rat.utils.DefaultLog;
import org.apache.rat.utils.Log;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.CleanupMode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import org.apache.rat.ConfigurationException;
import org.apache.rat.utils.ExtendedIterator;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.CleanupMode;
import org.junit.jupiter.api.io.TempDir;
Expand Down
2 changes: 1 addition & 1 deletion apache-rat-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>apache-rat-project</artifactId>
<groupId>org.apache.rat</groupId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import org.apache.rat.utils.DefaultLog;
import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.io.CleanupMode;
Expand Down
2 changes: 1 addition & 1 deletion apache-rat-tasks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat-tasks</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
import org.apache.rat.utils.DefaultLog;
import org.apache.rat.utils.Log;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.condition.EnabledIf;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.io.CleanupMode;
import org.junit.jupiter.api.io.TempDir;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down
2 changes: 1 addition & 1 deletion apache-rat-testdata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat-testdata</artifactId>
<name>Apache Creadur RAT::Testdata</name>
Expand Down
2 changes: 1 addition & 1 deletion apache-rat-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat-tools</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion apache-rat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
</parent>
<artifactId>apache-rat</artifactId>
<packaging>jar</packaging>
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</parent>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-project</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.18-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Creadur RAT</name>
<url>https://creadur.apache.org/rat/</url>
Expand Down Expand Up @@ -53,24 +53,24 @@ agnostic home for software distribution comprehension and audit tools.
<assertj.version>4.0.0-M1</assertj.version>
<javaVersion>17</javaVersion>
<tika.version>3.2.3</tika.version>
<mockito.version>5.21.0</mockito.version>
<mockito.version>5.22.0</mockito.version>
<maven.compiler.source>${javaVersion}</maven.compiler.source>
<maven.compiler.target>${javaVersion}</maven.compiler.target>
<!-- This is the version of Maven required to use the RAT Maven Plugin -->
<mavenMinVersion>3.9</mavenMinVersion>
<mavenVersion>3.9.12</mavenVersion>
<mavenVersion>3.9.13</mavenVersion>
<creadur.jira.id>RAT</creadur.jira.id>
<velocity.core.version>2.4.1</velocity.core.version>
<velocity.tools.version>3.1</velocity.tools.version>
<!-- maven plugin versions -->
<mavenPluginTestingVersion>3.5.0</mavenPluginTestingVersion>
<mavenPluginTestingVersion>3.5.1</mavenPluginTestingVersion>
<mavenPluginPluginVersion>3.15.2</mavenPluginPluginVersion>
<mavenChangesVersion>3.0.0-M3</mavenChangesVersion>
<mavenJavadocPluginVersion>3.12.0</mavenJavadocPluginVersion>
<mavenPmdPluginVersion>3.28.0</mavenPmdPluginVersion>
<!-- Used to generate download page for RAT during site builds, please adapt versions manually BEFORE doing a release -->
<!-- START - adapt manually before doing a release -->
<previousRatVersion>0.17</previousRatVersion>
<previousRatVersion>0.18</previousRatVersion>
<currentSnapshotRatVersion>1.0.0-SNAPSHOT</currentSnapshotRatVersion>
<!-- END - adapt manually before doing a release -->
</properties>
Expand Down Expand Up @@ -570,7 +570,7 @@ agnostic home for software distribution comprehension and audit tools.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<version>3.15.0</version>
<configuration>
<release>${javaVersion}</release>
<source>${javaVersion}</source>
Expand All @@ -585,7 +585,7 @@ agnostic home for software distribution comprehension and audit tools.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.9.0</version>
<version>3.10.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -658,7 +658,7 @@ agnostic home for software distribution comprehension and audit tools.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<configuration>
<propertiesEncoding>ISO-8859-1</propertiesEncoding>
<addDefaultExcludes>false</addDefaultExcludes>
Expand All @@ -667,12 +667,12 @@ agnostic home for software distribution comprehension and audit tools.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
<configuration>
<forkCount>1</forkCount>
<!-- RAT-293: We need to append to the existing arguments in order for code coverage to work -->
Expand Down
13 changes: 8 additions & 5 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,16 @@ in order to be properly linked in site reports.
<author email="dev@creadur.apache.org">Apache Creadur RAT developers</author>
</properties>
<body>
<!--release version="2.0.0-SNAPSHOT" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
<action issue="RAT-xyz" type="update" dev="pottlinger" due-to="dependabot">
TODO/TBD: collect all dependabot updates for release 2.0.0.
<!--release version="1.0.0-SNAPSHOT" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
<action issue="RAT-532" type="update" dev="pottlinger" due-to="dependabot">
TODO/TBD: collect all dependabot updates for release 1.0.0.
</action>
</release>
-->
<release version="1.0.0" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
<release version="0.18" date="xxxx-yy-zz" description="Current SNAPSHOT - release to be done">
<action issue="RAT-440" type="add" dev="pottlinger" due-to="guptas6est">
Upgrade to doxia 2.0.0 and generate XHTML5 reports during RAT runs (fixes multiple CVEs implicitly).
</action>
<action issue="RAT-475, RAT-533" type="add" dev="pottlinger" due-to="Ryan Schmitt">
Speedup tests and avoid garbage collection workaround by changing to CleanupMode.NONE in jUnit's TempDir usages.
</action>
Expand Down Expand Up @@ -144,7 +147,7 @@ in order to be properly linked in site reports.
Changed '/.externalToolBuilders' to '/.externalToolBuilders/**' in the ECLIPSE standard exclusion list and added '**/bin/**' to ignore generated binary folders in Eclipse IDE.
</action>
<action issue="RAT-498" type="update" dev="pottlinger" due-to="dependabot">
TODO/TBD: collect all dependabot updates for release 1.0.0.
TODO/TBD: collect all dependabot updates for release 0.18.
</action>
</release>
<release version="0.17" date="2025-10-12" description=
Expand Down
26 changes: 13 additions & 13 deletions src/site/xdoc/download_rat.xml.vm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ limitations under the License.
</p>
</form>
<p>
The <a href="https://www.apache.org/dist/creadur/KEYS">KEYS</a>
The <a href="https://downloads.apache.org/creadur/KEYS">KEYS</a>
file links to the code signing keys used to sign the
product. The <code>PGP</code> link downloads the OpenPGP
compatible signature from our main site. The
Expand All @@ -72,32 +72,32 @@ limitations under the License.
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.bz2">apache-rat-${previousRatVersion}-bin.tar.bz2</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.bz2.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.bz2.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.bz2.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.bz2.asc">pgp</a>
</td>
</tr>
<tr>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.gz">apache-rat-${previousRatVersion}-bin.tar.gz</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.gz.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.gz.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.gz.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.tar.gz.asc">pgp</a>
</td>
</tr>
<tr>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.zip">apache-rat-${previousRatVersion}-bin.zip</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.zip.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.zip.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.zip.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-bin.zip.asc">pgp</a>
</td>
</tr>
</table>
Expand All @@ -109,32 +109,32 @@ limitations under the License.
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.bz2">apache-rat-${previousRatVersion}-src.tar.bz2</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.bz2.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.bz2.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.bz2.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.bz2.asc">pgp</a>
</td>
</tr>
<tr>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.gz">apache-rat-${previousRatVersion}-src.tar.gz</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.gz.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.gz.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.gz.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.tar.gz.asc">pgp</a>
</td>
</tr>
<tr>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.zip">apache-rat-${previousRatVersion}-src.zip</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.zip.sha512">sha512</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.zip.sha512">sha512</a>
</td>
<td>
<a href="[preferred]/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.zip.asc">pgp</a>
<a href="https://downloads.apache.org/creadur/apache-rat-${previousRatVersion}/apache-rat-${previousRatVersion}-src.zip.asc">pgp</a>
</td>
</tr>
</table>
Expand Down