Thanks to visit codestin.com
Credit goes to github.com

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
1 change: 0 additions & 1 deletion operator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@

<project.build-time>${timestamp}</project.build-time>

<!-- Following properties are used for downstream build to alter final distribution archive file name and internal base directory of the archive. -->
<dist.archive.file.prefix>keycloak</dist.archive.file.prefix>
<dist.archive.dir.prefix>${dist.archive.file.prefix}</dist.archive.dir.prefix>
<dist.archive.file.version>${project.version}</dist.archive.file.version>
<dist.archive.dir.version>${project.version}</dist.archive.dir.version>
<dist.archive.file>${dist.archive.file.prefix}-${dist.archive.file.version}</dist.archive.file>
<dist.archive.dir>${dist.archive.dir.prefix}-${dist.archive.dir.version}</dist.archive.dir>

<!-- core version for app-server-wildfly/eap tests, should match wildfly/eap server -->
<tests.wildfly.core.version>19.0.1.Final</tests.wildfly.core.version>

Expand Down Expand Up @@ -190,6 +198,7 @@
<shade.plugin.version>3.4.1</shade.plugin.version>
<smallrye.openapi.generator.plugin.version>3.6.2</smallrye.openapi.generator.plugin.version>
<openapi.generator.plugin.version>6.3.0</openapi.generator.plugin.version>
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>

<!-- Surefire Settings -->
<surefire.memory.Xms>512m</surefire.memory.Xms>
Expand Down Expand Up @@ -1931,6 +1940,11 @@
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
1 change: 1 addition & 0 deletions quarkus/dist/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
</formats>

<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>${dist.archive.dir}</baseDirectory>

<fileSets>
<fileSet>
Expand Down
2 changes: 1 addition & 1 deletion quarkus/dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</dependencies>

<build>
<finalName>keycloak-${project.version}</finalName>
<finalName>${dist.archive.file}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<artifactId>integration-arquillian-servers-auth-server-quarkus</artifactId>

<properties>
<auth.server.home>${project.build.directory}/unpacked/keycloak-${project.version}</auth.server.home>
<auth.server.home>${project.build.directory}/unpacked/${dist.archive.dir}</auth.server.home>
<common.resources>${basedir}/../common</common.resources>
<session.cache.owners>2</session.cache.owners>
<offline.session.cache.owners>2</offline.session.cache.owners>
Expand Down