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
95 changes: 0 additions & 95 deletions .github/workflows/build_sonar_verify.yml

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
distribution: 'adopt'
java-version: '17'
cache: 'maven'
server-id: ossrh
server-username: SONATYPE_USERNAME
server-password: SONATYPE_PASSWORD
server-id: central
server-username: MAVEN_CENTRAL_USERNAME
server-password: MAVEN_CENTRAL_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Install semantic-release dependencies
Expand All @@ -42,6 +42,6 @@ jobs:
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
36 changes: 0 additions & 36 deletions .github/workflows/sonar-master.yml

This file was deleted.

15 changes: 3 additions & 12 deletions .settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,13 @@
<servers>
<server>
<!-- Maven Central Deployment -->
<id>ossrh</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
<id>central</id>
<username>${env.MAVEN_CENTRAL_USERNAME}</username>
<password>${env.MAVEN_CENTRAL_PASSWORD}</password>
</server>
<server>
<id>gpg.passphrase</id>
<passphrase>${env.MAVEN_GPG_PASSPHRASE}</passphrase>
</server>
</servers>

<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
</profile>
</profiles>
</settings>
1 change: 1 addition & 0 deletions metarParser-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>metarParser-commons</artifactId>
<name>metarParser-commons</name>
<description>Module containing utility classes</description>

<properties>
Expand Down
1 change: 1 addition & 0 deletions metarParser-entities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>metarParser-entities</artifactId>
<name>metarParser-entities</name>
<description>Module containing the model of the application.</description>

<properties>
Expand Down
2 changes: 2 additions & 0 deletions metarParser-parsers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>metarParser-parsers</artifactId>
<name>metarParser-parsers</name>

<description>Module containing the parsers.</description>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion metarParser-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<version>2.17.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>metarParser-services</name>
<artifactId>metarParser-services</artifactId>

<properties>
Expand Down
1 change: 1 addition & 0 deletions metarParser-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>metarParser-spi</artifactId>
<name>metarParser-spi</name>

<properties>
<jacoco.coverage.instruction.minimum>0.96</jacoco.coverage.instruction.minimum>
Expand Down
22 changes: 10 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
<maven-site-plugin.version>3.21.0</maven-site-plugin.version>
<maven.source.plugin.version>3.3.1</maven.source.plugin.version>
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
<commons-csv.version>1.14.0</commons-csv.version>
<pitest-junit5-plugin.version>1.2.3</pitest-junit5-plugin.version>
<pitest-maven.version>1.19.5</pitest-maven.version>
Expand Down Expand Up @@ -288,11 +287,11 @@
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<id>central</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<id>central</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
Expand Down Expand Up @@ -339,15 +338,14 @@
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down