Skip to content

Commit 5a09756

Browse files
committed
remove reference to brooklyncentral parent - not needed and not compatible with releases
1 parent 31b4237 commit 5a09756

File tree

1 file changed

+54
-6
lines changed

1 file changed

+54
-6
lines changed

pom.xml

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
<version>0.2.0-SNAPSHOT</version><!--BROOKLYN_DNS_VERSION-->
1010
<packaging>bundle</packaging>
1111

12-
<parent>
13-
<groupId>io.brooklyn</groupId>
14-
<artifactId>brooklyncentral-parent</artifactId>
15-
<version>1.0.3-SNAPSHOT</version>
16-
</parent>
17-
1812
<name>Brooklyn :: DNS</name>
1913
<description>These blueprints provide an easy way to ensure hostnames resolve wherever needed in an Apache Brooklyn blueprint</description>
2014
<url>https://github.com/brooklyncentral/brooklyn-dns</url>
@@ -160,5 +154,59 @@
160154
</executions>
161155
</plugin>
162156
</plugins>
157+
163158
</build>
159+
160+
<profiles>
161+
<profile>
162+
<id>sonatype-nexus-repo</id>
163+
<activation>
164+
<property>
165+
<name>deployTo</name>
166+
<value>sonatype</value>
167+
</property>
168+
</activation>
169+
<distributionManagement>
170+
<snapshotRepository>
171+
<id>sonatype-nexus-snapshots</id>
172+
<name>sonatype-nexus-snapshots</name>
173+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
174+
<uniqueVersion>true</uniqueVersion>
175+
</snapshotRepository>
176+
<repository>
177+
<id>sonatype-nexus-staging</id>
178+
<name>sonatype-nexus-staging</name>
179+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
180+
<uniqueVersion>true</uniqueVersion>
181+
</repository>
182+
</distributionManagement>
183+
<build>
184+
<plugins>
185+
<plugin>
186+
<groupId>org.apache.maven.plugins</groupId>
187+
<artifactId>maven-gpg-plugin</artifactId>
188+
<version>${maven-gpg-plugin.version}</version>
189+
<executions>
190+
<execution>
191+
<id>sign-artifacts</id>
192+
<phase>verify</phase>
193+
<goals>
194+
<goal>sign</goal>
195+
</goals>
196+
<configuration>
197+
<secretKeyring>${gpg.secret.key}</secretKeyring>
198+
<passphrase>${gpg.passphrase}</passphrase>
199+
<gpgArguments>
200+
<arg>--pinentry-mode</arg>
201+
<arg>loopback</arg>
202+
</gpgArguments>
203+
</configuration>
204+
</execution>
205+
</executions>
206+
</plugin>
207+
</plugins>
208+
</build>
209+
</profile>
210+
</profiles>
211+
164212
</project>

0 commit comments

Comments
 (0)