File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
src/test/java/javax/money Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ This is the API module of JSR 354 licenced under
1212See also:
1313http://javamoney.java.net
1414
15+ Release Notes
16+ -------------
17+
18+ - * 1.0* API as defined by JSR 354 Spec.
19+ - * 1.0.1* API as defined by JSR 354 Spec (Fix: building Java 7 API with Java 7)
20+
21+
1522[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/javax.money/money-api/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/javax.money/money-api )
1623[ ![ Build Status] ( https://api.travis-ci.org/JavaMoney/jsr354-api.png?branch=master )] ( https://travis-ci.org/JavaMoney/jsr354-api )
1724[ ![ Coverage Status] ( https://coveralls.io/repos/JavaMoney/jsr354-api/badge.svg?branch=master )] ( https://coveralls.io/r/JavaMoney/jsr354-api?branch=master )
Original file line number Diff line number Diff line change 1515 <artifactId >money-api</artifactId >
1616 <packaging >bundle</packaging >
1717
18- <version >1.1-SNAPSHOT </version >
18+ <version >1.0.1 </version >
1919 <name >JSR 354 (Money and Currency API)</name >
2020 <url >http://java.net/projects/javamoney</url >
2121 <inceptionYear >2012</inceptionYear >
Original file line number Diff line number Diff line change 1010
1111import org .testng .annotations .Test ;
1212
13+ import javax .money .convert .CurrencyConversion ;
14+ import javax .money .convert .ExchangeRate ;
15+ import javax .money .convert .ExchangeRateProvider ;
16+ import javax .money .convert .MonetaryConversions ;
17+ import java .time .LocalDate ;
18+ import java .util .Collection ;
1319import java .util .List ;
20+ import java .util .Locale ;
1421
1522import static org .testng .Assert .*;
1623
2027@ SuppressWarnings ({"unchecked" , "rawtypes" })
2128public class AbstractQueryTest {
2229
30+
2331 private AbstractQueryBuilder <AbstractQueryBuilder , AbstractQuery > createBuilder () {
2432 return new AbstractQueryBuilder () {
2533 @ Override
You can’t perform that action at this time.
0 commit comments