-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
160 lines (143 loc) · 4.99 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0" encoding="UTF-8"?>
<!-- CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON
THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT.
PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING
THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE AGREEMENT.
IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT
THE BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency API ("Specification")
Copyright (c) 2012-2013, Credit Suisse All rights reserved. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.javamoney.adoptjsr</groupId>
<artifactId>moneymachine</artifactId>
<packaging>jar</packaging>
<version>0.1-SNAPSHOT</version>
<name>Money Machine (API Taestsuite)</name>
<url>http://java.net/projects/javamoney</url>
<inceptionYear>2014</inceptionYear>
<description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency.
This module is an API test suite to guide a workshop to gain feedback on the API.</description>
<organization>
<name>JavaMoney</name>
<url>http://javamoney.org</url>
</organization>
<licenses>
<license>
<name>Apache 2 License</name>
<comments>Spec</comments>
<url>LICENSE.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<jsr.version>1.0-RC3</jsr.version>
<jdkVersion>1.8</jdkVersion>
<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<moduleDir>.</moduleDir>
<basedir>.</basedir>
<!-- Dependency versions -->
<junit.version>4.8.2</junit.version>
<license.licenseName>jcp_spec</license.licenseName>
<license.licenseResolver>src/license</license.licenseResolver>
</properties>
<developers>
<developer>
<id>atsticks</id>
<name>Anatole Tresch</name>
<organization>Credit Suisse</organization>
<roles>
<role>Specification Lead</role>
</roles>
</developer>
</developers>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<scm>
<connection>scm:git:https://github.com/atsticks/javamachine.git</connection>
<tag>master</tag>
<developerConnection>scm:git:https://github.com/atsticks/javamaschine.git</developerConnection>
<url>https://github.com/atsticks/javamaschine</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.money</groupId>
<artifactId>money-api</artifactId>
<version>${jsr.version}</version>
</dependency>
<dependency>
<groupId>org.javamoney</groupId>
<artifactId>moneta</artifactId>
<version>${jsr.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.money</groupId>
<artifactId>money-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.javamoney</groupId>
<artifactId>moneta</artifactId>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.4</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.2</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<debug>true</debug>
<optimize>true</optimize>
<verbose>true</verbose>
<source>${maven.compile.sourceLevel}</source>
<target>${maven.compile.targetLevel}</target>
<compilerArgument>-g</compilerArgument>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>