|
9 | 9 |
|
10 | 10 | <name>hamcrest-more-matchers</name>
|
11 | 11 | <description>Additional matchers for Hamcrest Library</description>
|
| 12 | + <url>https://github.com/seregamorph/hamcrest-more-matchers</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 17 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 18 | + |
| 19 | + <lombok.version>1.18.12</lombok.version> |
| 20 | + <hamcrest.version>1.3</hamcrest.version> |
| 21 | + <findbugs.version>3.0.0</findbugs.version> |
| 22 | + <javassist.version>3.24.0-GA</javassist.version> |
| 23 | + <junit.version>4.12</junit.version> |
| 24 | + |
| 25 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 26 | + </properties> |
12 | 27 |
|
13 | 28 | <developers>
|
14 | 29 | <developer>
|
|
24 | 39 | < developerConnection>scm:git: [email protected]:seregamorph/hamcrest-more-matchers.git</ developerConnection>
|
25 | 40 | </scm>
|
26 | 41 |
|
27 |
| - <properties> |
28 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
29 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
30 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
31 |
| - |
32 |
| - <lombok.version>1.18.12</lombok.version> |
33 |
| - <hamcrest.version>1.3</hamcrest.version> |
34 |
| - <findbugs.version>3.0.0</findbugs.version> |
35 |
| - <javassist.version>3.24.0-GA</javassist.version> |
36 |
| - <junit.version>4.12</junit.version> |
37 |
| - |
38 |
| - <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
39 |
| - </properties> |
| 42 | + <licenses> |
| 43 | + <license> |
| 44 | + <name>Apache License, Version 2.0</name> |
| 45 | + <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 46 | + <distribution>repo</distribution> |
| 47 | + </license> |
| 48 | + </licenses> |
40 | 49 |
|
41 | 50 | <dependencies>
|
42 | 51 | <dependency>
|
|
88 | 97 | <version>3.6.2</version>
|
89 | 98 | </plugin>
|
90 | 99 | <plugin>
|
91 |
| - <groupId>org.apache.maven.plugins</groupId> |
92 | 100 | <artifactId>maven-source-plugin</artifactId>
|
93 | 101 | <version>3.2.0</version>
|
94 | 102 | <executions>
|
|
130 | 138 | </execution>
|
131 | 139 | </executions>
|
132 | 140 | </plugin>
|
| 141 | + <plugin> |
| 142 | + <artifactId>maven-deploy-plugin</artifactId> |
| 143 | + <version>2.8.2</version> |
| 144 | + <executions> |
| 145 | + <execution> |
| 146 | + <id>default-deploy</id> |
| 147 | + <phase>deploy</phase> |
| 148 | + <goals> |
| 149 | + <goal>deploy</goal> |
| 150 | + </goals> |
| 151 | + </execution> |
| 152 | + </executions> |
| 153 | + </plugin> |
| 154 | + <plugin> |
| 155 | + <groupId>org.sonatype.plugins</groupId> |
| 156 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 157 | + <version>1.6.7</version> |
| 158 | + <extensions>true</extensions> |
| 159 | + <configuration> |
| 160 | + <serverId>ossrh</serverId> |
| 161 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 162 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 163 | + </configuration> |
| 164 | + </plugin> |
| 165 | + <plugin> |
| 166 | + <groupId>org.codehaus.mojo</groupId> |
| 167 | + <artifactId>versions-maven-plugin</artifactId> |
| 168 | + <version>2.7</version> |
| 169 | + </plugin> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-release-plugin</artifactId> |
| 173 | + <version>2.5.3</version> |
| 174 | + <configuration> |
| 175 | + <localCheckout>true</localCheckout> |
| 176 | + <pushChanges>false</pushChanges> |
| 177 | + <mavenExecutorId>forked-path</mavenExecutorId> |
| 178 | + <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> |
| 179 | + </configuration> |
| 180 | + <dependencies> |
| 181 | + <dependency> |
| 182 | + <groupId>org.apache.maven.scm</groupId> |
| 183 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 184 | + <version>1.9.5</version> |
| 185 | + </dependency> |
| 186 | + </dependencies> |
| 187 | + </plugin> |
133 | 188 | </plugins>
|
134 | 189 | </build>
|
135 | 190 |
|
| 191 | + <profiles> |
| 192 | + <profile> |
| 193 | + <id>release-sign-artifacts</id> |
| 194 | + <activation> |
| 195 | + <property> |
| 196 | + <name>performRelease</name> |
| 197 | + <value>true</value> |
| 198 | + </property> |
| 199 | + </activation> |
| 200 | + <build> |
| 201 | + <plugins> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-gpg-plugin</artifactId> |
| 205 | + <version>1.6</version> |
| 206 | + <executions> |
| 207 | + <execution> |
| 208 | + <id>sign-artifacts</id> |
| 209 | + <phase>verify</phase> |
| 210 | + <goals> |
| 211 | + <goal>sign</goal> |
| 212 | + </goals> |
| 213 | + </execution> |
| 214 | + </executions> |
| 215 | + </plugin> |
| 216 | + </plugins> |
| 217 | + </build> |
| 218 | + </profile> |
| 219 | + </profiles> |
| 220 | + |
| 221 | + <distributionManagement> |
| 222 | + <snapshotRepository> |
| 223 | + <id>ossrh</id> |
| 224 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 225 | + </snapshotRepository> |
| 226 | + <repository> |
| 227 | + <id>ossrh</id> |
| 228 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ |
| 229 | + </url> |
| 230 | + </repository> |
| 231 | + </distributionManagement> |
| 232 | + |
136 | 233 | </project>
|
0 commit comments