Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modifieddocumentation/ESAPI-release-steps.odt
Binary file not shown.
Binary file modifieddocumentation/ESAPI-release-steps.pdf
Binary file not shown.
28 changes: 15 additions & 13 deletions pom.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,14 +7,12 @@
<packaging>jar</packaging>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<repository>
<id>central</id>
<url>https://central.sonatype.org/publish/publish-portal-maven/</url>
</repository>
<!-- You can pick up the ESAPI configuration jars here, under the Assets section of each release. -->
<downloadUrl>https://github.com/ESAPI/esapi-java-legacy/releases</downloadUrl>
</distributionManagement>

<licenses>
Expand DownExpand Up@@ -427,6 +425,16 @@
</pluginManagement>

<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<deploymentName>${project.name}-${project.version}</deploymentName>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<!-- Create SBOM -->
<plugin>
<groupId>org.cyclonedx</groupId>
Expand DownExpand Up@@ -515,12 +523,6 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
Expand Down