|
9 | 9 | <version>0.2.0-SNAPSHOT</version><!--BROOKLYN_DNS_VERSION--> |
10 | 10 | <packaging>bundle</packaging> |
11 | 11 |
|
12 | | - <parent> |
13 | | - <groupId>io.brooklyn</groupId> |
14 | | - <artifactId>brooklyncentral-parent</artifactId> |
15 | | - <version>1.0.3-SNAPSHOT</version> |
16 | | - </parent> |
17 | | - |
18 | 12 | <name>Brooklyn :: DNS</name> |
19 | 13 | <description>These blueprints provide an easy way to ensure hostnames resolve wherever needed in an Apache Brooklyn blueprint</description> |
20 | 14 | <url>https://github.com/brooklyncentral/brooklyn-dns</url> |
|
160 | 154 | </executions> |
161 | 155 | </plugin> |
162 | 156 | </plugins> |
| 157 | + |
163 | 158 | </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 | + |
164 | 212 | </project> |
0 commit comments