Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 994857b

Browse files
author
Sarmokadam
committed
changes added deploy profile
1 parent eef5247 commit 994857b

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

pom.xml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@
9696
</lifecycleMappingMetadata>
9797
</configuration>
9898
</plugin>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-gpg-plugin</artifactId>
102+
<version>1.5</version>
103+
</plugin>
99104
</plugins>
100105
</pluginManagement>
101106

@@ -145,6 +150,35 @@
145150
</plugins>
146151
</build>
147152

153+
<distributionManagement>
154+
<snapshotRepository>
155+
<id>ossrh</id>
156+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
157+
</snapshotRepository>
158+
<repository>
159+
<id>ossrh</id>
160+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
161+
</repository>
162+
</distributionManagement>
163+
164+
<issueManagement>
165+
<system>GitHub</system>
166+
<url>https://github.com/devonfw/devon/issues</url>
167+
</issueManagement>
168+
169+
<scm>
170+
<url>https://github.com/devonfw/devon/tree/develop</url>
171+
</scm>
172+
173+
<licenses>
174+
<license>
175+
<name>Apache Software Licenese</name>
176+
<url>https://github.com/devonfw/devon/blob/develop/terms-of-use.txt</url>
177+
<distribution>repo</distribution>
178+
<comments/>
179+
</license>
180+
</licenses>
181+
148182
<profiles>
149183
<profile>
150184
<id>subsystemtest</id>
@@ -158,6 +192,27 @@
158192
<oasp.test.excluded.groups/>
159193
</properties>
160194
</profile>
195+
196+
<profile>
197+
<build>
198+
<plugins>
199+
<plugin>
200+
<groupId>org.apache.maven.plugins</groupId>
201+
<artifactId>maven-gpg-plugin</artifactId>
202+
<version>1.5</version>
203+
<executions>
204+
<execution>
205+
<id>sign-artifacts</id>
206+
<phase>verify</phase>
207+
<goals>
208+
<goal>sign</goal>
209+
</goals>
210+
</execution>
211+
</executions>
212+
</plugin>
213+
</plugins>
214+
</build>
215+
</profile>
161216
</profiles>
162217

163218
</project>

0 commit comments

Comments
 (0)