Skip to content

Commit 7bf9f39

Browse files
A Quick Commit
1 parent a2eac12 commit 7bf9f39

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

.github/workflows/Release.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,20 @@ jobs:
2424
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2525
restore-keys: ${{ runner.os }}-m2
2626

27-
- name: Publish package
27+
- name: Verify
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3029
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
3130
run: |
32-
mvn -B -Pjacoco deploy org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \
31+
mvn -B -Pjacoco verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \
3332
-Dsonar.host.url="https://sonarcloud.io" \
3433
-Dsonar.organization=memoria-io \
3534
-Dsonar.projectKey=memoria-io_atom
3635
36+
- name: Publish package
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
run: mvn --batch-mode deploy
40+
3741
- name: Get Maven project version
3842
env:
3943
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.memoria</groupId>
88
<artifactId>atom</artifactId>
9-
<version>24.7.1</version>
9+
<version>24.7.2</version>
1010
</parent>
1111

1212
<groupId>io.memoria.atom</groupId>
1313
<artifactId>core</artifactId>
14-
<version>24.7.1</version>
14+
<version>24.7.2</version>
1515
<packaging>jar</packaging>
1616
<name>${project.groupId}.${project.artifactId}</name>
1717
<description>Core Module</description>

eventsourcing/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.memoria</groupId>
88
<artifactId>atom</artifactId>
9-
<version>24.7.1</version>
9+
<version>24.7.2</version>
1010
</parent>
1111

1212
<groupId>io.memoria.atom</groupId>
1313
<artifactId>eventsourcing</artifactId>
14-
<version>24.7.1</version>
14+
<version>24.7.2</version>
1515
<packaging>jar</packaging>
1616
<name>${project.groupId}.${project.artifactId}</name>
1717
<description>eventsourcing Module</description>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<!--suppress MavenRedundantGroupId -->
1414
<groupId>io.memoria</groupId>
1515
<artifactId>atom</artifactId>
16-
<version>24.7.1</version>
16+
<version>24.7.2</version>
1717
<packaging>pom</packaging>
1818

1919
<!-- Metadata -->

xjackson/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.memoria</groupId>
88
<artifactId>atom</artifactId>
9-
<version>24.7.1</version>
9+
<version>24.7.2</version>
1010
</parent>
1111

1212
<groupId>io.memoria.atom</groupId>
1313
<artifactId>xjackson</artifactId>
14-
<version>24.7.1</version>
14+
<version>24.7.2</version>
1515
<packaging>jar</packaging>
1616
<name>${project.groupId}.${project.artifactId}</name>
1717
<description>text Module</description>

0 commit comments

Comments
 (0)