|
24 | 24 | <maven.compiler.target>${maven.compiler.source}</maven.compiler.target> |
25 | 25 | </properties> |
26 | 26 |
|
| 27 | + <url>http://wavesoftware.github.io/java-gasper/</url> |
| 28 | + |
| 29 | + <developers> |
| 30 | + <developer> |
| 31 | + <id>cardil</id> |
| 32 | + <name>Krzysztof Suszyński</name> |
| 33 | + <email>krzysztof.suszynski@wavesoftware.pl</email> |
| 34 | + <organization>Wave Software</organization> |
| 35 | + <organizationUrl>http://wavesoftware.pl/</organizationUrl> |
| 36 | + </developer> |
| 37 | + </developers> |
| 38 | + |
| 39 | + <organization> |
| 40 | + <name>Wave Software</name> |
| 41 | + <url>http://wavesoftware.pl/</url> |
| 42 | + </organization> |
| 43 | + |
27 | 44 | <licenses> |
28 | 45 | <license> |
29 | 46 | <name>Apache License 2.0</name> |
|
47 | 64 | <maven>${maven.required.version}</maven> |
48 | 65 | </prerequisites> |
49 | 66 |
|
| 67 | + <distributionManagement> |
| 68 | + <snapshotRepository> |
| 69 | + <id>ossrh</id> |
| 70 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 71 | + </snapshotRepository> |
| 72 | + <repository> |
| 73 | + <id>ossrh</id> |
| 74 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 75 | + </repository> |
| 76 | + </distributionManagement> |
| 77 | + |
50 | 78 | <dependencies> |
51 | 79 | <dependency> |
52 | 80 | <groupId>org.projectlombok</groupId> |
|
162 | 190 | <parallelThreads>3</parallelThreads> |
163 | 191 | </configuration> |
164 | 192 | </plugin> |
| 193 | + <plugin> |
| 194 | + <groupId>external.atlassian.jgitflow</groupId> |
| 195 | + <artifactId>jgitflow-maven-plugin</artifactId> |
| 196 | + <version>1.0-m5.1</version> |
| 197 | + <configuration> |
| 198 | + <enableSshAgent>true</enableSshAgent> |
| 199 | + <flowInitContext> |
| 200 | + <versionTagPrefix>v</versionTagPrefix> |
| 201 | + </flowInitContext> |
| 202 | + </configuration> |
| 203 | + </plugin> |
165 | 204 | </plugins> |
166 | 205 | </build> |
167 | 206 |
|
168 | 207 | <profiles> |
| 208 | + <profile> |
| 209 | + <id>release-profile</id> |
| 210 | + <activation> |
| 211 | + <property> |
| 212 | + <name>performRelease</name> |
| 213 | + <value>true</value> |
| 214 | + </property> |
| 215 | + </activation> |
| 216 | + <build> |
| 217 | + <plugins> |
| 218 | + <plugin> |
| 219 | + <groupId>org.apache.maven.plugins</groupId> |
| 220 | + <artifactId>maven-source-plugin</artifactId> |
| 221 | + <version>2.2.1</version> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <id>attach-sources</id> |
| 225 | + <goals> |
| 226 | + <goal>jar-no-fork</goal> |
| 227 | + </goals> |
| 228 | + </execution> |
| 229 | + </executions> |
| 230 | + </plugin> |
| 231 | + <plugin> |
| 232 | + <groupId>org.apache.maven.plugins</groupId> |
| 233 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 234 | + <version>2.9.1</version> |
| 235 | + <executions> |
| 236 | + <execution> |
| 237 | + <id>attach-javadocs</id> |
| 238 | + <goals> |
| 239 | + <goal>jar</goal> |
| 240 | + </goals> |
| 241 | + </execution> |
| 242 | + </executions> |
| 243 | + </plugin> |
| 244 | + <plugin> |
| 245 | + <groupId>org.apache.maven.plugins</groupId> |
| 246 | + <artifactId>maven-gpg-plugin</artifactId> |
| 247 | + <version>1.5</version> |
| 248 | + <executions> |
| 249 | + <execution> |
| 250 | + <id>sign-artifacts</id> |
| 251 | + <phase>verify</phase> |
| 252 | + <goals> |
| 253 | + <goal>sign</goal> |
| 254 | + </goals> |
| 255 | + </execution> |
| 256 | + </executions> |
| 257 | + </plugin> |
| 258 | + </plugins> |
| 259 | + </build> |
| 260 | + </profile> |
169 | 261 | <profile> |
170 | 262 | <id>ci</id> |
171 | 263 |
|
|
0 commit comments