Skip to content

Commit b4fd708

Browse files
committed
Fixed build, tagged version 1.0-RC2.
1 parent 0f24c19 commit b4fd708

File tree

3 files changed

+45
-30
lines changed

3 files changed

+45
-30
lines changed

pom.xml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<artifactId>money-api</artifactId>
1616
<packaging>jar</packaging>
1717

18-
<version>1.0-SNAPSHOT</version>
18+
<version>1.0-RC2</version>
1919

2020
<name>JSR 354 (Money and Currency API)</name>
2121
<url>http://java.net/projects/javamoney</url>
@@ -260,7 +260,7 @@
260260
</property>
261261
</activation>
262262
<build>
263-
<pluginManagement>
263+
<pluginManagement>
264264
<plugins>
265265
<plugin>
266266
<groupId>org.apache.maven.plugins</groupId>
@@ -328,7 +328,7 @@
328328
</property>
329329
</activation>
330330
<build>
331-
<pluginManagement>
331+
<pluginManagement>
332332
<plugins>
333333
<!-- ======================================================= -->
334334
<!-- License -->
@@ -570,32 +570,32 @@
570570
</plugin>
571571
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
572572
<plugin>
573-
<groupId>org.eclipse.m2e</groupId>
574-
<artifactId>lifecycle-mapping</artifactId>
575-
<version>1.0.0</version>
576-
<configuration>
577-
<lifecycleMappingMetadata>
578-
<pluginExecutions>
579-
<pluginExecution>
580-
<pluginExecutionFilter>
581-
<groupId>org.jacoco</groupId>
582-
<artifactId>
583-
jacoco-maven-plugin
584-
</artifactId>
585-
<versionRange>
586-
[0.7.2.201409121644,)
587-
</versionRange>
588-
<goals>
589-
<goal>prepare-agent</goal>
590-
</goals>
591-
</pluginExecutionFilter>
592-
<action>
593-
<ignore></ignore>
594-
</action>
595-
</pluginExecution>
596-
</pluginExecutions>
597-
</lifecycleMappingMetadata>
598-
</configuration>
573+
<groupId>org.eclipse.m2e</groupId>
574+
<artifactId>lifecycle-mapping</artifactId>
575+
<version>1.0.0</version>
576+
<configuration>
577+
<lifecycleMappingMetadata>
578+
<pluginExecutions>
579+
<pluginExecution>
580+
<pluginExecutionFilter>
581+
<groupId>org.jacoco</groupId>
582+
<artifactId>
583+
jacoco-maven-plugin
584+
</artifactId>
585+
<versionRange>
586+
[0.7.2.201409121644,)
587+
</versionRange>
588+
<goals>
589+
<goal>prepare-agent</goal>
590+
</goals>
591+
</pluginExecutionFilter>
592+
<action>
593+
<ignore></ignore>
594+
</action>
595+
</pluginExecution>
596+
</pluginExecutions>
597+
</lifecycleMappingMetadata>
598+
</configuration>
599599
</plugin>
600600
</plugins>
601601
</pluginManagement>
@@ -613,7 +613,7 @@
613613
</executions>
614614
</plugin>
615615
<plugin>
616-
<groupId>org.apache.maven.plugins</groupId>
616+
<groupId>org.apache.maven.plugins</groupId>
617617
<artifactId>maven-javadoc-plugin</artifactId>
618618
<version>2.9.1</version>
619619
</plugin>

src/test/java/javax/money/convert/TestMonetaryConversionsSingletonSpi.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ public ExchangeRate getExchangeRate(MonetaryAmount sourceAmount) {
8787
.setFactor(TestNumberValue.of(1)).build();
8888
}
8989

90+
@Override
91+
public ExchangeRateProvider getExchangeRateProvider() {
92+
return null;
93+
}
94+
9095
@Override
9196
public MonetaryAmount apply(MonetaryAmount value) {
9297
return value;

src/test/java/javax/money/spi/MonetaryConversionsSingletonSpiTest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ public ExchangeRate getExchangeRate(MonetaryAmount sourceAmount) {
6060
return null;
6161
}
6262

63+
@Override
64+
public ExchangeRateProvider getExchangeRateProvider() {
65+
return null;
66+
}
67+
6368
@Override
6469
public CurrencyUnit getCurrency() {
6570
return null;
@@ -97,6 +102,11 @@ public ExchangeRate getExchangeRate(MonetaryAmount sourceAmount) {
97102
return null;
98103
}
99104

105+
@Override
106+
public ExchangeRateProvider getExchangeRateProvider() {
107+
return null;
108+
}
109+
100110
@Override
101111
public CurrencyUnit getCurrency() {
102112
return null;

0 commit comments

Comments
 (0)