Skip to content

Commit c5f9917

Browse files
authored
Add missing parent reference for theme-verifier-maven-plugin (#37464)
Signed-off-by: Alex Szczuczko <[email protected]>
1 parent 6587f5f commit c5f9917

File tree

1 file changed

+29
-8
lines changed

1 file changed

+29
-8
lines changed

misc/theme-verifier/pom.xml

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@
2020
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2121
<modelVersion>4.0.0</modelVersion>
2222

23+
<parent>
24+
<groupId>org.keycloak</groupId>
25+
<artifactId>keycloak-parent</artifactId>
26+
<version>999.0.0-SNAPSHOT</version>
27+
<relativePath>../../pom.xml</relativePath>
28+
</parent>
29+
2330
<groupId>org.keycloak</groupId>
2431
<artifactId>theme-verifier-maven-plugin</artifactId>
2532
<version>999.0.0-SNAPSHOT</version>
@@ -99,14 +106,28 @@
99106
<skip>true</skip>
100107
</configuration>
101108
</plugin>
102-
<plugin>
103-
<groupId>org.sonatype.plugins</groupId>
104-
<artifactId>nxrm3-maven-plugin</artifactId>
105-
<configuration>
106-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
107-
</configuration>
108-
</plugin>
109109
</plugins>
110110
</build>
111111

112-
</project>
112+
<profiles>
113+
<profile>
114+
<id>nexus3-staging</id>
115+
<build>
116+
<plugins>
117+
<plugin>
118+
<groupId>org.sonatype.plugins</groupId>
119+
<artifactId>nxrm3-maven-plugin</artifactId>
120+
<version>${nexus3.staging.plugin.version}</version>
121+
<extensions>true</extensions>
122+
<configuration>
123+
<serverId>${jboss.releases.repo.id}</serverId>
124+
<nexusUrl>${jboss.repo.nexusUrl}</nexusUrl>
125+
<repository>${jboss.releases.repo.name}</repository>
126+
</configuration>
127+
</plugin>
128+
</plugins>
129+
</build>
130+
</profile>
131+
</profiles>
132+
133+
</project>

0 commit comments

Comments
 (0)