Skip to content

Commit c63387c

Browse files
Refactor release pipeline (#187)
* Add release profile to pom.xml and update deployment command in release.yml * Update project name and description in pom.xml for clarity --------- Co-authored-by: NobelNerd <benedikt.rohlf@gmx.de>
1 parent a343a58 commit c63387c

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<version>1.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

12-
<name>${project.groupId}:${project.artifactId}</name>
13-
<description>A Keycloak extension for GeoAware authentication and authorization.</description>
12+
<name>Keycloak GeoAware Parent</name>
13+
<description>Keycloak GeoAware is an advanced feature extension for Keycloak that integrates geolocation and device monitoring into the authentication process.</description>
1414
<url>https://github.com/b2-code/Keycloak-GeoAware</url>
1515

1616
<licenses>

provider/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
<artifactId>keycloak-geoaware</artifactId>
1313

14+
<name>Keycloak GeoAware</name>
15+
1416
<properties>
1517
<maven.compiler.source>21</maven.compiler.source>
1618
<maven.compiler.target>21</maven.compiler.target>
@@ -186,7 +188,9 @@
186188
<executions>
187189
<execution>
188190
<id>attach-sources</id>
189-
<goals><goal>jar-no-fork</goal></goals>
191+
<goals>
192+
<goal>jar-no-fork</goal>
193+
</goals>
190194
</execution>
191195
</executions>
192196
</plugin>
@@ -197,7 +201,9 @@
197201
<executions>
198202
<execution>
199203
<id>attach-javadocs</id>
200-
<goals><goal>jar</goal></goals>
204+
<goals>
205+
<goal>jar</goal>
206+
</goals>
201207
</execution>
202208
</executions>
203209
</plugin>

0 commit comments

Comments
 (0)