|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.javamoney</groupId> |
5 | 5 | <artifactId>javamoney-parent</artifactId> |
6 | | - <version>1.0-RC3</version> |
| 6 | + <version>1.0-SNAPSHOT</version> |
7 | 7 | <packaging>pom</packaging> |
8 | 8 | <name>Money and Currency - JavaMoney parent</name> |
9 | 9 | <description>JavaMoney Parent POM</description> |
|
16 | 16 | <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel> |
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | 18 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
19 | | - <slf4j.version>1.6.1</slf4j.version> |
20 | 19 | </properties> |
21 | 20 |
|
22 | 21 | <organization> |
|
113 | 112 | </roles> |
114 | 113 | </developer> |
115 | 114 | </developers> |
| 115 | + |
| 116 | + <prerequisites> |
| 117 | + <maven>3.0.4</maven> |
| 118 | + </prerequisites> |
| 119 | + |
| 120 | + <mailingLists> |
| 121 | + <mailingList> |
| 122 | + <name>JSR354 Issues List</name> |
| 123 | + <subscribe>https://java.net/projects/javamoney/lists</subscribe> |
| 124 | + <unsubscribe>https://java.net/projects/javamoney/lists</unsubscribe> |
| 125 | + <archive>https://java.net/projects/javamoney/lists/issues/archive</archive> |
| 126 | + |
| 127 | + </mailingList> |
| 128 | + <mailingList> |
| 129 | + <name>JSR354 Public Mailing List</name> |
| 130 | + <subscribe>https://java.net/projects/javamoney/lists</subscribe> |
| 131 | + <unsubscribe>https://java.net/projects/javamoney/lists</unsubscribe> |
| 132 | + <archive>http://java.net/projects/javamoney/lists/jcurrency_mail/archive</archive> |
| 133 | + |
| 134 | + </mailingList> |
| 135 | + </mailingLists> |
116 | 136 |
|
| 137 | + <licenses> |
| 138 | + <license> |
| 139 | + <name>Apache License version 2.0</name> |
| 140 | + <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 141 | + </license> |
| 142 | + </licenses> |
| 143 | + |
117 | 144 | <scm> |
118 | 145 | <connection>scm:git:https://github.com/JavaMoney/javamoney-parent.git</connection> |
119 | 146 | <tag>master</tag> |
120 | 147 | <developerConnection>scm:git:https://github.com/JavaMoney/javamoney-parent.git</developerConnection> |
121 | 148 | <url>https://github.com/JavaMoney/javamoney-parent</url> |
122 | 149 | </scm> |
| 150 | + |
| 151 | + <repositories> |
| 152 | + <repository> |
| 153 | + <snapshots> |
| 154 | + <enabled>false</enabled> |
| 155 | + </snapshots> |
| 156 | + <id>central</id> |
| 157 | + <name>libs-release</name> |
| 158 | + <url>http://oss.jfrog.org/artifactory/libs-release</url> |
| 159 | + </repository> |
| 160 | + <repository> |
| 161 | + <snapshots /> |
| 162 | + <id>snapshots</id> |
| 163 | + <name>libs-snapshot</name> |
| 164 | + <url>http://oss.jfrog.org/artifactory/libs-snapshot</url> |
| 165 | + </repository> |
| 166 | + </repositories> |
123 | 167 |
|
124 | | - <licenses> |
125 | | - <license> |
126 | | - <name>Apache License version 2.0</name> |
127 | | - <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
128 | | - </license> |
129 | | - </licenses> |
| 168 | + <distributionManagement> |
| 169 | + <repository> |
| 170 | + <id>bintray</id> |
| 171 | + <name>oss-jfrog-artifactory-snapshots</name> |
| 172 | + <url>https://oss.jfrog.org/artifactory/oss-release-local</url> |
| 173 | + </repository> |
| 174 | + <snapshotRepository> |
| 175 | + <id>bintray</id> |
| 176 | + <name>oss-jfrog-artifactory-snapshots</name> |
| 177 | + <url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url> |
| 178 | + </snapshotRepository> |
| 179 | + </distributionManagement> |
| 180 | + |
| 181 | + <issueManagement> |
| 182 | + <system>GitHub</system> |
| 183 | + <url>https://github.com/JavaMoney/javamoney-parent/issues</url> |
| 184 | + </issueManagement> |
130 | 185 |
|
131 | 186 | <build> |
132 | 187 | <extensions> |
|
138 | 193 | </extensions> |
139 | 194 | <pluginManagement> |
140 | 195 | <plugins> |
141 | | - <!-- ======================================================= --> |
142 | | - <!-- License --> |
143 | | - <!-- ======================================================= --> |
144 | | - <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> |
145 | | - <version>1.4</version> </plugin> --> |
146 | | - <plugin> |
147 | | - <groupId>com.google.code.maven-license-plugin</groupId> |
148 | | - <artifactId>maven-license-plugin</artifactId> |
149 | | - <version>1.4.0</version> |
150 | | - <configuration> |
151 | | - <basedir>${basedir}</basedir> |
152 | | - <header>${basedir}/src/etc/header.txt</header> |
153 | | - <quiet>false</quiet> |
154 | | - <failIfMissing>true</failIfMissing> |
155 | | - <aggregate>false</aggregate> |
156 | | - <encoding>UTF-8</encoding> |
157 | | - <excludes> |
158 | | - <exclude>target/**</exclude> |
159 | | - <exclude>LICENSE*.html</exclude> |
160 | | - <exclude>README.*</exclude> |
161 | | - <exclude>checkstyle*.*</exclude> |
162 | | - <exclude>*.css</exclude> |
163 | | - </excludes> |
164 | | - </configuration> |
165 | | - </plugin> |
166 | | - <!-- TODO enable this only for major upgrades (ensure to copy LICENSE.txt |
167 | | - to LICENSE.bak first) --> |
168 | 196 | <plugin> |
169 | 197 | <groupId>org.apache.maven.plugins</groupId> |
170 | 198 | <artifactId>maven-gpg-plugin</artifactId> |
|
189 | 217 | </executions> |
190 | 218 | <configuration> |
191 | 219 | <detectLinks>true</detectLinks> |
192 | | - <!-- excludePackageNames>blabla</excludePackageNames --> |
193 | 220 | <keywords>true</keywords> |
194 | 221 | <linksource>true</linksource> |
195 | 222 | <failOnError>false</failOnError> |
196 | | - <!-- overview>${basedir}/overview.html</overview --> |
197 | 223 | <source>${maven.compile.sourceLevel}</source> |
198 | | - <!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile --> |
199 | 224 | <verbose>true</verbose> |
200 | 225 | </configuration> |
201 | 226 | </plugin> |
|
272 | 297 | </execution> |
273 | 298 | </executions> |
274 | 299 | </plugin> |
275 | | - |
276 | | - |
277 | 300 | <plugin> |
278 | 301 | <groupId>org.codehaus.mojo</groupId> |
279 | 302 | <artifactId>versions-maven-plugin</artifactId> |
|
302 | 325 | </excludes> |
303 | 326 | </configuration> |
304 | 327 | </plugin> |
305 | | - <plugin> |
306 | | - <artifactId>maven-release-plugin</artifactId> |
307 | | - <version>2.4.1</version> |
308 | | - <configuration> |
309 | | - <!-- Workaround for MGPG-9 and MRELEASE-424, MRELEASE-263 --> |
310 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
311 | | - </configuration> |
312 | | - </plugin> |
313 | 328 | <plugin> |
314 | 329 | <groupId>org.apache.felix</groupId> |
315 | 330 | <artifactId>maven-bundle-plugin</artifactId> |
|
362 | 377 | </plugins> |
363 | 378 | </build> |
364 | 379 |
|
365 | | - <repositories> |
366 | | - <repository> |
367 | | - <name>Sonatype OSS Snapshots</name> |
368 | | - <id>SonatypeOSS</id> |
369 | | - <snapshots> |
370 | | - <enabled>true</enabled> |
371 | | - <updatePolicy>daily</updatePolicy> |
372 | | - </snapshots> |
373 | | - <releases> |
374 | | - <enabled>false</enabled> |
375 | | - </releases> |
376 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
377 | | - </repository> |
378 | | - </repositories> |
379 | | - |
380 | | - <distributionManagement> |
381 | | - <repository> |
382 | | - <id>sonatype-nexus-staging</id> |
383 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
384 | | - <name>Sonatype Release Repository</name> |
385 | | - </repository> |
386 | | - <snapshotRepository> |
387 | | - <id>sonatype-nexus-snapshots</id> |
388 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
389 | | - <name>Sonatype Nexus Snapshots</name> |
390 | | - </snapshotRepository> |
391 | | - </distributionManagement> |
392 | | - |
393 | | - <issueManagement> |
394 | | - <system>GitHub</system> |
395 | | - <url>https://github.com/JavaMoney/javamoney-parent/issues</url> |
396 | | - </issueManagement> |
397 | | - |
398 | 380 | <profiles> |
399 | 381 | <profile> |
400 | 382 | <id>release-sign-artifacts</id> |
|
0 commit comments