|
15 | 15 | <artifactId>javamoney-parent</artifactId>
|
16 | 16 | <version>1.0</version>
|
17 | 17 | </parent>
|
18 |
| - <version>1.1-SNAPSHOT</version> |
| 18 | + <version>1.1</version> |
19 | 19 | <artifactId>moneta</artifactId>
|
20 | 20 | <packaging>bundle</packaging>
|
21 | 21 | <name>Moneta (JSR 354 RI)</name>
|
|
41 | 41 | </licenses>
|
42 | 42 |
|
43 | 43 | <properties>
|
44 |
| - <jsr.version>1.0</jsr.version> |
| 44 | + <jsr.version>1.0.1</jsr.version> |
45 | 45 | <jdkVersion>1.8</jdkVersion>
|
46 | 46 | <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
|
47 | 47 | <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
|
|
288 | 288 | </plugins>
|
289 | 289 | </build>
|
290 | 290 | </profile>
|
| 291 | + <profile> |
| 292 | + <id>compareWithBP</id> |
| 293 | + <build> |
| 294 | + <plugins> |
| 295 | + <plugin> |
| 296 | + <groupId>com.github.siom79.japicmp</groupId> |
| 297 | + <artifactId>japicmp-maven-plugin</artifactId> |
| 298 | + <version>0.6.2</version> |
| 299 | + <configuration> |
| 300 | + <oldVersion> |
| 301 | + <dependency> |
| 302 | + <groupId>${project.groupId}</groupId> |
| 303 | + <artifactId>${project.artifactId}-bp</artifactId> |
| 304 | + <version>${project.version}</version> |
| 305 | + <type>jar</type> |
| 306 | + </dependency> |
| 307 | + </oldVersion> |
| 308 | + <newVersion> |
| 309 | + <file> |
| 310 | + <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> |
| 311 | + </file> |
| 312 | + </newVersion> |
| 313 | + <parameter> |
| 314 | + <onlyModified>false</onlyModified> |
| 315 | + <includes> |
| 316 | + <include>org.javamoney.moneta</include> |
| 317 | + <include>org.javamoney.moneta.convert</include> |
| 318 | + <include>org.javamoney.moneta.format</include> |
| 319 | + <include>org.javamoney.moneta.function</include> |
| 320 | + <include>org.javamoney.moneta.spi</include> |
| 321 | + </includes> |
| 322 | + <excludes> |
| 323 | + <exclude>org.javamoney.moneta.internal.convert</exclude> |
| 324 | + <exclude>org.javamoney.moneta.internal.format</exclude> |
| 325 | + <exclude>org.javamoney.moneta.internal.loader</exclude> |
| 326 | + <exclude>org.javamoney.moneta.internal</exclude> |
| 327 | + </excludes> |
| 328 | + <accessModifier>protected</accessModifier> |
| 329 | + <breakBuildOnModifications>false</breakBuildOnModifications> |
| 330 | + <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> |
| 331 | + <onlyBinaryIncompatible>false</onlyBinaryIncompatible> |
| 332 | + <includeSynthetic>false</includeSynthetic> |
| 333 | + <ignoreMissingClasses>false</ignoreMissingClasses> |
| 334 | + <skipPomModules>true</skipPomModules> |
| 335 | + <!--<htmlStylesheet>path/to/stylesheet.css</htmlStylesheet>--> |
| 336 | + <htmlTitle>JSR 354 - Java 8 / Java 7 Compatibility/Comparison Report</htmlTitle> |
| 337 | + <noAnnotations>false</noAnnotations> |
| 338 | + <ignoreNonResolvableArtifacts>false</ignoreNonResolvableArtifacts> |
| 339 | + </parameter> |
| 340 | + <dependencies> |
| 341 | + <dependency> |
| 342 | + <groupId>org.apache.commons</groupId> |
| 343 | + <artifactId>commons-math3</artifactId> |
| 344 | + <version>3.4</version> |
| 345 | + </dependency> |
| 346 | + </dependencies> |
| 347 | + <skip>false</skip> |
| 348 | + </configuration> |
| 349 | + <executions> |
| 350 | + <execution> |
| 351 | + <phase>verify</phase> |
| 352 | + <goals> |
| 353 | + <goal>cmp</goal> |
| 354 | + </goals> |
| 355 | + </execution> |
| 356 | + </executions> |
| 357 | + </plugin> |
| 358 | + </plugins> |
| 359 | + </build> |
| 360 | + </profile> |
291 | 361 | </profiles>
|
292 | 362 |
|
293 | 363 | <dependencyManagement>
|
|
0 commit comments