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
5 changes: 2 additions & 3 deletions .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: power-server
release:
current-version: 0.0.11
next-version: 0.0.12-SNAPSHOT

current-version: 0.1.0
next-version: 0.1.1-SNAPSHOT
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
mvn -B release:prepare -Prelease -Darguments="-DskipTests" -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}}
mvn -B release:perform -Darguments="-DperformRelease -DskipTests" -DperformRelease -Prelease
env:
MAVEN_USERNAME: "${{ secrets.OSSRH_USERNAME }}"
MAVEN_PASSWORD: "${{ secrets.OSSRH_TOKEN }}"
MAVEN_USERNAME: "${{ secrets.CENTRAL_USER }}"
MAVEN_PASSWORD: "${{ secrets.CENTRAL_PASSWORD }}"
MAVEN_GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}"

- name: Push changes to ${{github.base_ref}} branch
Expand Down Expand Up @@ -146,4 +146,4 @@ jobs:
name: jreleaser-logs
path: |
target/jreleaser/trace.log
target/jreleaser/output.properties
target/jreleaser/output.properties
4 changes: 2 additions & 2 deletions analysis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>power-server-analysis</artifactId>
Expand Down Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>build-tools</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>build-tools</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion if-manifest-export/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>power-server-if-manifest-export</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions measure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>power-server-measure</artifactId>
Expand Down Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>build-tools</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions metadata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>power-server-metadata</artifactId>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>build-tools</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>power-server : parent</name>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>power-server</artifactId>
<name>power-server : server</name>
Expand Down
Loading