-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpom.xml
More file actions
128 lines (115 loc) · 3.73 KB
/
pom.xml
File metadata and controls
128 lines (115 loc) · 3.73 KB
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
<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/xsd/maven-4.0.0.xsd">
<!--
Copyright (c) 2012, 2020, Werner Keil, Anatole Tresch and others.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
Contributors: @atsticks, @keilw, @otjava, @manuela-grindei
-->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.javamoney.lib</groupId>
<artifactId>javamoney-lib</artifactId>
<version>1.1</version>
</parent>
<artifactId>javamoney-exchange</artifactId>
<packaging>pom</packaging>
<name>JavaMoney Exchange Libraries </name>
<description>This parent has contains pluggable modules for JSR 354 like 3rd party exchange rate providers.</description>
<licenses>
<license>
<name>Apache License version 2.0</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>keilw</id>
<name>Werner Keil</name>
<email>werner@javamoney.org</email>
<organization>JavaMoney</organization>
<organizationUrl>http://www.javamoney.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>https://github.com/JavaMoney/javamoney-lib.git</connection>
<developerConnection>scm:git:ssh:github.com:JavaMoney/javamoney-lib.git</developerConnection>
<url>https://github.com/JavaMoney/javamoney-lib/tree/master/exchange</url>
</scm>
<modules>
<module>exchange-rate-frb</module>
<module>exchange-rate-yahoo</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.4.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.7.0</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>${ri.version}</version>
<type>pom</type>
</dependency>
<!-- XML support -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.1</version>
<scope>runtime</scope>
</dependency>
<!-- OSGI support -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.annotation</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>
</project>