forked from petalslink/petals-se-mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
156 lines (147 loc) · 5.68 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2016-2018 Linagora
This program/library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2.1 of the License, or (at your
option) any later version.
This program/library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program/library; If not, see http://www.gnu.org/licenses/
for the GNU Lesser General Public License version 2.1.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>petals-cdkbased-components-parent</artifactId>
<groupId>org.ow2.petals</groupId>
<relativePath />
<version>1.1.0-SNAPSHOT</version>
</parent>
<name>Petals ESB - Components - SE Mapping</name>
<artifactId>petals-se-mapping</artifactId>
<groupId>org.ow2.petals</groupId>
<version>1.1.0-SNAPSHOT</version>
<packaging>jbi-component</packaging>
<description>Mapping Service Engine</description>
<dependencies>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-util</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easycommons</groupId>
<artifactId>easycommons-stream</artifactId>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-commons-log</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.easywsdl</groupId>
<artifactId>easywsdl-wsdl</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-core</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-api</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-jbi</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-jbidescriptor</artifactId>
</dependency>
<dependency>
<!-- Saxon is required to be able to transmit DOM Document as global XSL parameter -->
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.7.0-11</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdk-junit</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-junit-external-resources</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- Already included in JRE 8 -->
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<id>generate</id>
<goals>
<goal>generate</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<addCompileSourceRoot>false</addCompileSourceRoot>
<addTestCompileSourceRoot>true</addTestCompileSourceRoot>
<schemaDirectory>${basedir}/src/test/resources/su/</schemaDirectory>
<schemaIncludes>
<include>valid/facture.wsdl</include>
<include>valid/ged.wsdl</include>
</schemaIncludes>
<generateDirectory>${project.build.directory}/generated-test-sources/xjc</generateDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<configuration>
<usedDependencies>
<!-- These dependencies are needed for runtime -->
<usedDependency>net.sf.saxon:Saxon-HE</usedDependency>
</usedDependencies>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:https://github.com/petalslink/petals-se-mapping.git</connection>
<developerConnection>scm:git:https://github.com/petalslink/petals-se-mapping.git</developerConnection>
<tag>HEAD</tag>
</scm>
</project>