|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<!-- Licensed under the Apache License, Version 2.0 (the "License"); you |
3 | | - may not use this file except in compliance with the License. You may obtain |
4 | | - a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless |
5 | | - required by applicable law or agreed to in writing, software distributed |
6 | | - under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
7 | | - OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
8 | | - the specific language governing permissions and limitations under the License. --> |
9 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
10 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
11 | | - <modelVersion>4.0.0</modelVersion> |
12 | | - <parent> <!-- TODO use javamoney-examples as parent, if it's on MavenCentral, |
13 | | - too --> |
14 | | - <groupId>org.javamoney</groupId> |
15 | | - <artifactId>javamoney-parent</artifactId> |
16 | | - <version>1.1-SNAPSHOT</version> |
17 | | - </parent> |
18 | | - |
19 | | - <artifactId>javamoney-tck-usage-example</artifactId> |
20 | | - <packaging>jar</packaging> |
21 | | - <groupId>org.javamoney.examples</groupId> |
22 | | - <name>JSR 354 - TCK Test (Java8)</name> |
23 | | - <description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with |
24 | | - Money and Currency. |
25 | | - This module executes the JSR 354 TCK and tests the current JSR 354 Reference Implementation impl. based on Java 8. |
26 | | - </description> |
27 | | - |
28 | | - <licenses> |
29 | | - <license> |
30 | | - <name>Apache 2 License</name> |
31 | | - <url>LICENSE.txt</url> |
32 | | - <distribution>repo</distribution> |
33 | | - </license> |
34 | | - </licenses> |
35 | | - |
36 | | - <properties> |
37 | | - <!-- ************ TCK Setup ****************** --> |
38 | | - |
39 | | - <!-- 1) Your implementation artifact to be tested. --> |
40 | | - <impl.groupId>org.javamoney</impl.groupId> |
41 | | - <impl.artifactId>moneta</impl.artifactId> |
42 | | - <impl.version>1.4-SNAPSHOT</impl.version> |
43 | | - <impl.packageType>pom</impl.packageType> |
44 | | - |
45 | | - <!-- 2) JSR API version to be used. --> |
46 | | - <api.version>1.1-SNAPSHOT</api.version> |
47 | | - <api.artifactId>money-api</api.artifactId> |
48 | | - |
49 | | - <!-- ************ Other settings, Should normally not be changed. ************ --> |
50 | | - <javamoney.tck.version>1.1-SNAPSHOT</javamoney.tck.version> |
51 | | - <jdkVersion>1.8</jdkVersion> |
52 | | - <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel> |
53 | | - <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel> |
54 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
55 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
56 | | - <testng.version>6.14.3</testng.version> |
57 | | - </properties> |
58 | | - |
59 | | - <ciManagement> |
60 | | - <system>Travis CI</system> |
61 | | - <url>https://travis-ci.org/JavaMoney/javamoney-tck-usage-example</url> |
62 | | - </ciManagement> |
63 | | - |
64 | | - <issueManagement> |
65 | | - <system>Github</system> |
66 | | - <url>https://github.com/JavaMoney/jsr354-tck/issues</url> |
67 | | - </issueManagement> |
68 | | - |
69 | | - <scm> |
70 | | - <connection>scm:git:https://github.com/JavaMoney/javamoney-tck-usage-example.git</connection> |
71 | | - <tag>master</tag> |
72 | | - <developerConnection>scm:git:https://github.com/JavaMoney/jsr354-tck-usage-example.git</developerConnection> |
73 | | - <url>https://github.com/JavaMoney/javamoney-tck-usage-example</url> |
74 | | - </scm> |
75 | | - |
76 | | - <repositories> |
77 | | - <repository> |
78 | | - <snapshots> |
79 | | - <enabled>false</enabled> |
80 | | - </snapshots> |
81 | | - <id>bintray-release</id> |
82 | | - <name>libs-release</name> |
83 | | - <url>http://oss.jfrog.org/artifactory/libs-release</url> |
84 | | - </repository> |
85 | | - <repository> |
86 | | - <snapshots> |
87 | | - <enabled>true</enabled> |
88 | | - </snapshots> |
89 | | - <id>bintray-snapshot</id> |
90 | | - <name>libs-snapshot</name> |
91 | | - <url>http://oss.jfrog.org/artifactory/libs-snapshot</url> |
92 | | - </repository> |
93 | | - </repositories> |
94 | | - |
95 | | - <dependencies> |
96 | | - <dependency> |
97 | | - <groupId>org.javamoney</groupId> |
98 | | - <artifactId>javamoney-tck</artifactId> |
99 | | - <version>${javamoney.tck.version}</version> |
100 | | - <exclusions> |
101 | | - <exclusion> <!-- We only need this for the Java 8 version --> |
102 | | - <groupId>org.javamoney</groupId> |
103 | | - <artifactId>moneta-bp</artifactId> |
104 | | - </exclusion> |
105 | | - </exclusions> |
106 | | - </dependency> |
107 | | - <dependency> |
108 | | - <groupId>${impl.groupId}</groupId> |
109 | | - <artifactId>${impl.artifactId}</artifactId> |
110 | | - <version>${impl.version}</version> |
111 | | - <type>${impl.packageType}</type> |
112 | | - </dependency> |
113 | | - |
114 | | - <dependency> |
115 | | - <groupId>javax.money</groupId> |
116 | | - <artifactId>${api.artifactId}</artifactId> |
117 | | - <type>jar</type> |
118 | | - <version>${api.version}</version> |
119 | | - </dependency> |
120 | | - <dependency> |
121 | | - <groupId>org.testng</groupId> |
122 | | - <artifactId>testng</artifactId> |
123 | | - <version>${testng.version}</version> |
124 | | - <scope>test</scope> |
125 | | - </dependency> |
126 | | - </dependencies> |
127 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- Licensed under the Apache License, Version 2.0 (the "License"); you |
| 3 | + may not use this file except in compliance with the License. You may obtain |
| 4 | + a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless |
| 5 | + required by applicable law or agreed to in writing, software distributed |
| 6 | + under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
| 7 | + OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
| 8 | + the specific language governing permissions and limitations under the License. --> |
| 9 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 10 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 11 | + <modelVersion>4.0.0</modelVersion> |
| 12 | + <parent> <!-- TODO use javamoney-examples as parent, if it's on MavenCentral, |
| 13 | + too --> |
| 14 | + <groupId>org.javamoney</groupId> |
| 15 | + <artifactId>javamoney-parent</artifactId> |
| 16 | + <version>1.1</version> |
| 17 | + </parent> |
| 18 | + |
| 19 | + <artifactId>javamoney-tck-usage-example</artifactId> |
| 20 | + <packaging>jar</packaging> |
| 21 | + <groupId>org.javamoney.examples</groupId> |
| 22 | + <name>JSR 354 - TCK Test (Java8)</name> |
| 23 | + <description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with |
| 24 | + Money and Currency. |
| 25 | + This module executes the JSR 354 TCK and tests the current JSR 354 Reference Implementation impl. based on Java 8. |
| 26 | + </description> |
| 27 | + |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>Apache 2 License</name> |
| 31 | + <url>LICENSE.txt</url> |
| 32 | + <distribution>repo</distribution> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + |
| 36 | + <properties> |
| 37 | + <!-- ************ TCK Setup ****************** --> |
| 38 | + |
| 39 | + <!-- 1) Your implementation artifact to be tested. --> |
| 40 | + <impl.groupId>org.javamoney</impl.groupId> |
| 41 | + <impl.artifactId>moneta</impl.artifactId> |
| 42 | + <impl.version>1.4</impl.version> |
| 43 | + <impl.packageType>pom</impl.packageType> |
| 44 | + |
| 45 | + <!-- 2) JSR API version to be used. --> |
| 46 | + <api.version>1.1</api.version> |
| 47 | + <api.artifactId>money-api</api.artifactId> |
| 48 | + |
| 49 | + <!-- ************ Other settings, Should normally not be changed. ************ --> |
| 50 | + <javamoney.tck.version>1.1</javamoney.tck.version> |
| 51 | + <jdkVersion>1.8</jdkVersion> |
| 52 | + <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel> |
| 53 | + <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel> |
| 54 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 55 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 56 | + <testng.version>6.14.3</testng.version> |
| 57 | + </properties> |
| 58 | + |
| 59 | + <ciManagement> |
| 60 | + <system>Travis CI</system> |
| 61 | + <url>https://travis-ci.org/JavaMoney/javamoney-tck-usage-example</url> |
| 62 | + </ciManagement> |
| 63 | + |
| 64 | + <issueManagement> |
| 65 | + <system>Github</system> |
| 66 | + <url>https://github.com/JavaMoney/jsr354-tck/issues</url> |
| 67 | + </issueManagement> |
| 68 | + |
| 69 | + <scm> |
| 70 | + <connection>scm:git:https://github.com/JavaMoney/javamoney-tck-usage-example.git</connection> |
| 71 | + <tag>master</tag> |
| 72 | + <developerConnection>scm:git:https://github.com/JavaMoney/jsr354-tck-usage-example.git</developerConnection> |
| 73 | + <url>https://github.com/JavaMoney/javamoney-tck-usage-example</url> |
| 74 | + </scm> |
| 75 | + |
| 76 | + <repositories> |
| 77 | + <repository> |
| 78 | + <snapshots> |
| 79 | + <enabled>false</enabled> |
| 80 | + </snapshots> |
| 81 | + <id>bintray-release</id> |
| 82 | + <name>libs-release</name> |
| 83 | + <url>https://oss.jfrog.org/artifactory/libs-release</url> |
| 84 | + </repository> |
| 85 | + <repository> |
| 86 | + <snapshots> |
| 87 | + <enabled>true</enabled> |
| 88 | + </snapshots> |
| 89 | + <id>bintray-snapshot</id> |
| 90 | + <name>libs-snapshot</name> |
| 91 | + <url>https://oss.jfrog.org/artifactory/libs-snapshot</url> |
| 92 | + </repository> |
| 93 | + </repositories> |
| 94 | + |
| 95 | + <dependencies> |
| 96 | + <dependency> |
| 97 | + <groupId>org.javamoney</groupId> |
| 98 | + <artifactId>javamoney-tck</artifactId> |
| 99 | + <version>${javamoney.tck.version}</version> |
| 100 | + <exclusions> |
| 101 | + <exclusion> <!-- We only need this for the Java 8 version --> |
| 102 | + <groupId>org.javamoney</groupId> |
| 103 | + <artifactId>moneta-bp</artifactId> |
| 104 | + </exclusion> |
| 105 | + </exclusions> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>${impl.groupId}</groupId> |
| 109 | + <artifactId>${impl.artifactId}</artifactId> |
| 110 | + <version>${impl.version}</version> |
| 111 | + <type>${impl.packageType}</type> |
| 112 | + </dependency> |
| 113 | + |
| 114 | + <dependency> |
| 115 | + <groupId>javax.money</groupId> |
| 116 | + <artifactId>${api.artifactId}</artifactId> |
| 117 | + <type>jar</type> |
| 118 | + <version>${api.version}</version> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.testng</groupId> |
| 122 | + <artifactId>testng</artifactId> |
| 123 | + <version>${testng.version}</version> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + </dependencies> |
| 127 | +</project> |
0 commit comments