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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

jobs:
publish-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.repository == 'secureCodeBox/defectdojo-client-java'
permissions:
contents: write # needed for release creation
Expand All @@ -49,7 +49,7 @@ jobs:
with:
java-version: 17
distribution: temurin
server-id: ossrh
server-id: central
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.SIGNING_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
publish-snapshot:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.repository == 'secureCodeBox/defectdojo-client-java'
steps:

Expand All @@ -25,7 +25,7 @@ jobs:
with:
java-version: 17
distribution: temurin
server-id: ossrh
server-id: central
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: [pull_request, push, workflow_dispatch]

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:

- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ Committing with `git commit -s` will add the sign-off at the end of the commit m
- Sven Strittmatter <sven.strittmatter@iteratec.com>
- Timo Pagel <github@timo-pagel.de>
- Heiko Kiesel <heiko.kiesel@iteratec.com>
- Patrick Weiss <patrick.weiss@iteratec.com>
87 changes: 40 additions & 47 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>


<groupId>io.securecodebox</groupId>
<artifactId>defectdojo-client</artifactId>
<version>2.0.2-SNAPSHOT</version>
Expand All @@ -24,17 +26,6 @@
<url>https://www.securecodebox.io/</url>
</organization>

<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>

<scm>
<connection>scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</connection>
<developerConnection>scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</developerConnection>
<url>https://github.com/secureCodeBox/defectdojo-client-java.git</url>
<tag>defectdojo-client-2.0.0</tag>
</scm>

<developers>
<developer>
<id>jannik.hollenbach</id>
Expand Down Expand Up @@ -63,6 +54,22 @@
</developer>
</developers>

<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>

<issueManagement>
<system>github</system>
<url>https://github.com/secureCodeBox/defectdojo-client-java/issues</url>
</issueManagement>

<scm>
<connection>scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</connection>
<developerConnection>scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</developerConnection>
<url>https://github.com/secureCodeBox/defectdojo-client-java.git</url>
<tag>defectdojo-client-2.0.0</tag>
</scm>

<properties>
<maven.version>3.5.0</maven.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -122,12 +129,12 @@
<version>${com.fasterxml.jackson.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.11</version>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.11</version>
</dependency>

<dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
Expand Down Expand Up @@ -178,23 +185,25 @@
</dependency>
</dependencies>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
Expand Down Expand Up @@ -259,8 +268,8 @@

<configuration>
<rules>
<dependencyConvergence />
<requirePluginVersions />
<dependencyConvergence/>
<requirePluginVersions/>
<requireJavaVersion>
<version>${project.build.version.target}</version>
</requireJavaVersion>
Expand Down Expand Up @@ -319,18 +328,6 @@
<version>3.2.5</version>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
Expand Down Expand Up @@ -380,11 +377,7 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

</project>