Skip to content

Commit eb30a04

Browse files
authored
Merge pull request #66 from xdev-software/develop
Release
2 parents 2b861f6 + ce74eee commit eb30a04

File tree

9 files changed

+26
-18
lines changed

9 files changed

+26
-18
lines changed

.config/checkstyle/checkstyle.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
<property name="checks" value="."/>
3535
<property name="files" value="[\\/](src)?gen[\\/].*\.java$"/>
3636
</module>
37+
<module name="SuppressionSingleFilter">
38+
<property name="checks" value="."/>
39+
<property name="files" value="[\\/]src[\\/]gen(erated)?[\\/].*\.java$"/>
40+
</module>
3741
<!-- Test code -->
3842
<module name="SuppressionSingleFilter">
3943
<property name="checks" value="MagicNumberCheck"/>

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
Add the following lines to your pom:
102102
```XML
103103
<dependency>
104-
<groupId>com.xdev-software</groupId>
104+
<groupId>software.xdev</groupId>
105105
<artifactId>${{ env.PRIMARY_MAVEN_MODULE }}</artifactId>
106106
<version>${{ steps.version.outputs.release }}</version>
107107
</dependency>
@@ -133,8 +133,8 @@ jobs:
133133
- name: Publish to Apache Maven Central
134134
run: mvn -B deploy -Possrh
135135
env:
136-
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
137-
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
136+
MAVEN_CENTRAL_USERNAME: ${{ secrets.S01_OSS_SONATYPE_MAVEN_USERNAME }}
137+
MAVEN_CENTRAL_TOKEN: ${{ secrets.S01_OSS_SONATYPE_MAVEN_TOKEN }}
138138
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
139139
working-directory: ${{ env.PRIMARY_MAVEN_MODULE }}
140140

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
java-version: 17
4040

4141
- name: Cache SonarCloud packages
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.sonar/cache
4545
key: ${{ runner.os }}-sonar
4646
restore-keys: ${{ runner.os }}-sonar
4747

4848
- name: Cache Maven packages
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: ~/.m2
5252
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/test-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
run: mvn -B deploy -Possrh
2828
working-directory: ${{ env.PRIMARY_MAVEN_MODULE }}
2929
env:
30-
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
31-
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
30+
MAVEN_CENTRAL_USERNAME: ${{ secrets.S01_OSS_SONATYPE_MAVEN_USERNAME }}
31+
MAVEN_CENTRAL_TOKEN: ${{ secrets.S01_OSS_SONATYPE_MAVEN_TOKEN }}
3232
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.2.1
2+
* ⚠️ GroupId changed from ``com.xdev-software`` to ``software.xdev``
3+
* Updated dependencies
4+
15
# 1.2.0
26
* Added/Corrected attributes of
37
* ``/view/All``

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Latest version](https://img.shields.io/maven-central/v/com.xdev-software/sessionize-java-client?logo=apache%20maven)](https://mvnrepository.com/artifact/com.xdev-software/sessionize-java-client)
1+
[![Latest version](https://img.shields.io/maven-central/v/software.xdev/sessionize-java-client?logo=apache%20maven)](https://mvnrepository.com/artifact/software.xdev/sessionize-java-client)
22
[![Build](https://img.shields.io/github/actions/workflow/status/xdev-software/sessionize-java-client/checkBuild.yml?branch=develop)](https://github.com/xdev-software/sessionize-java-client/actions/workflows/checkBuild.yml?query=branch%3Adevelop)
33
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=xdev-software_sessionize-java-client&metric=alert_status)](https://sonarcloud.io/dashboard?id=xdev-software_sessionize-java-client)
44
[![API Specification Editor](https://img.shields.io/badge/API--Spec-Editor-85ea2d?logo=swagger)](https://editor.swagger.io/?url=https://raw.githubusercontent.com/xdev-software/sessionize-java-client/develop/openapi/openapi.yml)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.xdev-software</groupId>
7+
<groupId>software.xdev</groupId>
88
<artifactId>sessionize-java-client-root</artifactId>
9-
<version>1.2.0</version>
9+
<version>1.2.1-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<organization>

sessionize-java-client-demo/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.xdev-software</groupId>
7+
<groupId>software.xdev</groupId>
88
<artifactId>sessionize-java-client-demo</artifactId>
9-
<version>1.2.0</version>
9+
<version>1.2.1-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<inceptionYear>2023</inceptionYear>
@@ -30,7 +30,7 @@
3030

3131
<dependencies>
3232
<dependency>
33-
<groupId>com.xdev-software</groupId>
33+
<groupId>software.xdev</groupId>
3434
<artifactId>sessionize-java-client</artifactId>
3535
<version>${project.version}</version>
3636
</dependency>

sessionize-java-client/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.xdev-software</groupId>
7+
<groupId>software.xdev</groupId>
88
<artifactId>sessionize-java-client</artifactId>
9-
<version>1.2.0</version>
9+
<version>1.2.1-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>sessionize-java-client</name>
@@ -83,11 +83,11 @@
8383
<distributionManagement>
8484
<snapshotRepository>
8585
<id>ossrh</id>
86-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
86+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
8787
</snapshotRepository>
8888
<repository>
8989
<id>ossrh</id>
90-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
90+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
9191
</repository>
9292
</distributionManagement>
9393

@@ -271,7 +271,7 @@
271271
<extensions>true</extensions>
272272
<configuration>
273273
<serverId>ossrh</serverId>
274-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
274+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
275275
<!-- Sometimes OSSRH is really slow -->
276276
<stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes>
277277
<autoReleaseAfterClose>true</autoReleaseAfterClose>

0 commit comments

Comments
 (0)