Skip to content

Commit 3521065

Browse files
committed
Updated dependencies
1 parent 41d03d3 commit 3521065

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ pom.xml.tag
33
pom.xml.releaseBackup
44
pom.xml.next
55
release.properties
6+
*.iml
7+
/.idea
68
/.settings/
79
/.classpath
810
/.project

pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@
99
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1111
<modelVersion>4.0.0</modelVersion>
12-
<parent> <!-- TODO use javamoney-examples as parent, as soon as it's on MavenCentral,
12+
<parent> <!-- TODO use javamoney-examples as parent, if it's on MavenCentral,
1313
too -->
1414
<groupId>org.javamoney</groupId>
1515
<artifactId>javamoney-parent</artifactId>
16-
<version>1.0</version>
16+
<version>1.1-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>javamoney-tck-usage-example</artifactId>
2020
<packaging>jar</packaging>
2121
<groupId>org.javamoney.examples</groupId>
22-
<version>1.0.1-SNAPSHOT</version>
2322
<name>JSR 354 - TCK Test (Java8)</name>
2423
<description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with
2524
Money and Currency.
@@ -40,21 +39,21 @@
4039
<!-- 1) Your implementation artifact to be tested. -->
4140
<impl.groupId>org.javamoney</impl.groupId>
4241
<impl.artifactId>moneta</impl.artifactId>
43-
<impl.version>1.0.1-SNAPSHOT</impl.version>
44-
<impl.packageType>jar</impl.packageType>
42+
<impl.version>1.4-SNAPSHOT</impl.version>
43+
<impl.packageType>pom</impl.packageType>
4544

4645
<!-- 2) JSR API version to be used. -->
47-
<api.version>1.0</api.version>
46+
<api.version>1.1-SNAPSHOT</api.version>
4847
<api.artifactId>money-api</api.artifactId>
4948

5049
<!-- ************ Other settings, Should normally not be changed. ************ -->
51-
<org.javamoney.tck.version>1.0.1-SNAPSHOT</org.javamoney.tck.version>
50+
<org.javamoney.tck.version>1.1-SNAPSHOT</org.javamoney.tck.version>
5251
<jdkVersion>1.8</jdkVersion>
5352
<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
5453
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
5554
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5655
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
57-
<testng.version>6.8.5</testng.version>
56+
<testng.version>6.14.3</testng.version>
5857
</properties>
5958

6059
<ciManagement>

0 commit comments

Comments
 (0)