|
7 | 7 | <groupId>io.brooklyn.clocker</groupId>
|
8 | 8 | <artifactId>clocker-parent</artifactId>
|
9 | 9 | <packaging>pom</packaging>
|
10 |
| - <version>2.0.0-SNAPSHOT</version> <!-- CLOCKER_VERSION --> |
| 10 | + <version>2.0.0</version> <!-- CLOCKER_VERSION --> |
11 | 11 |
|
12 | 12 | <name>Clocker</name>
|
13 |
| - <description>Clocker</description> |
14 |
| - |
| 13 | + <description>Apache Brooklyn blueprints to deploy and manage Docker environments</description> |
| 14 | + <url>https://github.com/brooklyncentral/clocker</url> |
| 15 | + |
15 | 16 | <properties>
|
16 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
17 | 18 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
46 | 47 | </license>
|
47 | 48 | </licenses>
|
48 | 49 |
|
| 50 | + <!-- For the full list of developers, see contributors to https://github.com/brooklyncentral/clocker --> |
| 51 | + <developers> |
| 52 | + <developer> |
| 53 | + <name>Aled Sage</name> |
| 54 | + <organizationUrl>https://github.com/aledsage</organizationUrl> |
| 55 | + </developer> |
| 56 | + <developer> |
| 57 | + <name>Andrew Kennedy</name> |
| 58 | + <organizationUrl>https://github.com/grkvlt</organizationUrl> |
| 59 | + </developer> |
| 60 | + <developer> |
| 61 | + <name>Mark McKenna</name> |
| 62 | + <organizationUrl>https://github.com/m4rkmckenna</organizationUrl> |
| 63 | + </developer> |
| 64 | + </developers> |
| 65 | + |
49 | 66 | <distributionManagement>
|
50 | 67 | <snapshotRepository>
|
51 | 68 | <id>sonatype-nexus-snapshots</id>
|
|
132 | 149 | <artifactId>maven-jar-plugin</artifactId>
|
133 | 150 | <version>${maven-jar-plugin.version}</version>
|
134 | 151 | </plugin>
|
| 152 | + <plugin> |
| 153 | + <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <version>1.6</version> |
| 155 | + </plugin> |
135 | 156 | </plugins>
|
136 | 157 | </pluginManagement>
|
137 | 158 |
|
|
185 | 206 | </plugin>
|
186 | 207 | </plugins>
|
187 | 208 | </build>
|
| 209 | + |
| 210 | + <profiles> |
| 211 | + <profile> |
| 212 | + <id>sonatype-release</id> |
| 213 | + <activation> |
| 214 | + <property> |
| 215 | + <name>brooklyn.deployTo</name> |
| 216 | + <value>sonatype</value> |
| 217 | + </property> |
| 218 | + </activation> |
| 219 | + <distributionManagement> |
| 220 | + <repository> |
| 221 | + <id>sonatype-nexus-staging</id> |
| 222 | + <name>Nexus Release Repository</name> |
| 223 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 224 | + </repository> |
| 225 | + <snapshotRepository> |
| 226 | + <id>sonatype-nexus-snapshots</id> |
| 227 | + <name>Sonatype Nexus Snapshots</name> |
| 228 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 229 | + </snapshotRepository> |
| 230 | + </distributionManagement> |
| 231 | + <build> |
| 232 | + <plugins> |
| 233 | + <plugin> |
| 234 | + <artifactId>maven-gpg-plugin</artifactId> |
| 235 | + <executions> |
| 236 | + <execution> |
| 237 | + <id>sign-artifacts</id> |
| 238 | + <phase>verify</phase> |
| 239 | + <goals> |
| 240 | + <goal>sign</goal> |
| 241 | + </goals> |
| 242 | + </execution> |
| 243 | + </executions> |
| 244 | + </plugin> |
| 245 | + </plugins> |
| 246 | + </build> |
| 247 | + |
| 248 | + </profile> |
| 249 | + </profiles> |
| 250 | + |
188 | 251 | </project>
|
0 commit comments