forked from jbossws/jaxws-undertow-httpspi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
126 lines (112 loc) · 3.85 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<name>Undertow to JAXWS 2.2 HTTP SPI bridge</name>
<groupId>org.jboss.ws.projects</groupId>
<artifactId>jaxws-undertow-httpspi</artifactId>
<packaging>jar</packaging>
<description>Undertow to JAXWS 2.2 HTTP SPI bridge jakarta</description>
<version>2.0.1.Final-SNAPSHOT</version>
<!-- Source Control Management -->
<scm>
<connection>scm:git:https://github.com/jbossws/jaxws-undertow-httpspi.git</connection>
<developerConnection>scm:git:https://github.com/jbossws/jaxws-undertow-httpspi.git</developerConnection>
<url>https://github.com/jbossws/jaxws-undertow-httpspi</url>
<tag>HEAD</tag>
</scm>
<!-- Parent -->
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-parent</artifactId>
<version>1.4.4.Final</version>
</parent>
<!-- Properties -->
<properties>
<junit.version>4.12</junit.version>
<cxf.version>3.5.2-jbossorg-2</cxf.version>
<servlet-api.version>5.0.0</servlet-api.version>
<io.undertow.version>2.2.18.Final</io.undertow.version>
<jaxws.api.version>3.0.1</jaxws.api.version>
</properties>
<!-- licenses -->
<licenses>
<license>
<name>GNU Lesser General Public License v2.1 only</name>
<url>http://repository.jboss.org/licenses/lgpl-2.1.txt</url>
</license>
</licenses>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>${jaxws.api.version}</version>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>${io.undertow.version}</version>
<exclusions>
<exclusion>
<groupId>io.undertow</groupId>
<artifactId>undertow-build-config</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jboss</id>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine> -Djava.util.logging.config.file=${basedir}/src/test/resources/etc/logging.properties</argLine>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArguments>
<endorseddirs>${basedir}/target/endorsed</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>