-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
128 lines (118 loc) · 4.14 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2011 Talend Inc. - www.talend.com All rights reserved.
This program and the accompanying materials are made available under the
terms of the Apache License v2.0 which accompanies this distribution, and
is available at http://www.apache.org/licenses/LICENSE-2.0 -->
<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.talend.ps.demo</groupId>
<artifactId>customer.parent</artifactId>
<packaging>pom</packaging>
<version>0.1-SNAPSHOT</version>
<name>Super-parent pom for demo CXF projects</name>
<description>
This pom bundles all properties and settings that are shared amont all
Rudi CXF projects.
</description>
<organization>
<name>Talend Inc.</name>
<url>www.talend.com</url>
</organization>
<inceptionYear>2012</inceptionYear>
<url>http://talend.com</url>
<licenses>
<license>
<name>Apache Software License - Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<issueManagement>
<system>Jira</system>
<url>https://jira.sopera.de/browse/RUDI</url>
</issueManagement>
<scm>
<connection>scm:git:git@sop-tp15:/var/git/rudi-cxf-common</connection>
<developerConnection>scm:git:git@sop-tp15:/var/git/rudi-cxf-common</developerConnection>
</scm>
<properties>
<rudi.version>${project.version}</rudi.version>
<cxf.version>2.6.0</cxf.version>
<neethi.version>3.0.1</neethi.version>
<camel.version>2.7.3</camel.version>
<spring.version>3.0.7.RELEASE</spring.version>
<activemq.version>5.4.2</activemq.version>
<eclipse.osgi.version>3.6.0.v20100517</eclipse.osgi.version>
<karaf.version>2.2.2</karaf.version>
<zookeeper.version>3.3.3</zookeeper.version>
<derby.version>10.8.1.2</derby.version>
<servlet.api.version>2.5</servlet.api.version>
<wss4j.version>1.6.4</wss4j.version>
<!-- Test dependencies -->
<junit.version>4.8.2</junit.version>
<jetty.version>7.2.2.v20101205</jetty.version>
<!-- Log dependencies -->
<log4j.version>1.2.16</log4j.version>
<slf4j.version>1.6.1</slf4j.version>
<commons-logging.version>1.1.1</commons-logging.version>
<tesb.port>8040</tesb.port>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mockito-version>1.8.4</mockito-version>
<spring.ldap.version>1.3.1.RELEASE</spring.ldap.version>
<eclipselink.version>2.4.0</eclipselink.version>
<log4j-version>1.2.16</log4j-version>
<slf4j-version>1.6.1</slf4j-version>
</properties>
<modules>
<module>customer.common</module>
<module>customer.application</module>
<module>customer.consumer.remote</module>
<module>customer.provider.logic</module>
<module>customer.provider.remote</module>
<module>customer.features</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.4</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>