b4aa4cfa425bedb095765e39e1b2f670101c0cc5
[jalview.git] / j11lib / tmp / META-INF / maven / com.sun.xml.ws / jaxws-rt-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5
6     Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
7
8     The contents of this file are subject to the terms of either the GNU
9     General Public License Version 2 only ("GPL") or the Common Development
10     and Distribution License("CDDL") (collectively, the "License").  You
11     may not use this file except in compliance with the License.  You can
12     obtain a copy of the License at
13     https://oss.oracle.com/licenses/CDDL+GPL-1.1
14     or LICENSE.txt.  See the License for the specific
15     language governing permissions and limitations under the License.
16
17     When distributing the software, include this License Header Notice in each
18     file and include the License file at LICENSE.txt.
19
20     GPL Classpath Exception:
21     Oracle designates this particular file as subject to the "Classpath"
22     exception as provided by Oracle in the GPL Version 2 section of the License
23     file that accompanied this code.
24
25     Modifications:
26     If applicable, add the following below the License Header, with the fields
27     enclosed by brackets [] replaced by your own identifying information:
28     "Portions Copyright [year] [name of copyright owner]"
29
30     Contributor(s):
31     If you wish your version of this file to be governed by only the CDDL or
32     only the GPL Version 2, indicate your decision by adding "[Contributor]
33     elects to include this software in this distribution under the [CDDL or GPL
34     Version 2] license."  If you don't indicate a single choice of license, a
35     recipient has the option to distribute your version of this file under
36     either the CDDL, the GPL Version 2 or to extend the choice of license to
37     its licensees as provided above.  However, if you add GPL Version 2 code
38     and therefore, elected the GPL Version 2 license, then the option applies
39     only if the new code is made subject to such option by the copyright
40     holder.
41
42 -->
43
44 <project xmlns="http://maven.apache.org/POM/4.0.0"
45          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
46          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
47     <parent>
48         <artifactId>project</artifactId>
49         <groupId>com.sun.xml.ws</groupId>
50         <version>2.3.1</version>
51         <relativePath>../../../pom.xml</relativePath>
52     </parent>
53     <modelVersion>4.0.0</modelVersion>
54
55     <groupId>com.sun.xml.ws</groupId>
56     <artifactId>jaxws-rt-bundle</artifactId>
57     <name>JAX-WS RI Runtime Bundle aggregator</name>
58     <description>JAXWS bundle with module descriptor</description>
59
60
61     <dependencies>
62         <!-- module dependencies -->
63         <dependency>
64             <groupId>com.sun.xml.ws</groupId>
65             <artifactId>rt</artifactId>
66             <version>${project.version}</version>
67             <optional>true</optional>
68         </dependency>
69         <dependency>
70             <groupId>com.sun.xml.ws</groupId>
71             <artifactId>rt-fi</artifactId>
72             <version>${project.version}</version>
73             <optional>true</optional>
74         </dependency>
75         <dependency>
76             <groupId>com.sun.xml.ws</groupId>
77             <artifactId>httpspi-servlet</artifactId>
78             <version>${project.version}</version>
79             <optional>true</optional>
80         </dependency>
81         <dependency>
82             <groupId>com.sun.xml.ws</groupId>
83             <artifactId>servlet</artifactId>
84             <version>${project.version}</version>
85             <optional>true</optional>
86         </dependency>
87
88         <!-- module dependencies -->
89         <dependency>
90             <groupId>com.sun.xml.ws</groupId>
91             <artifactId>rt</artifactId>
92             <version>${project.version}</version>
93             <classifier>sources</classifier>
94             <optional>true</optional>
95         </dependency>
96         <dependency>
97             <groupId>com.sun.xml.ws</groupId>
98             <artifactId>rt-fi</artifactId>
99             <version>${project.version}</version>
100             <classifier>sources</classifier>
101             <optional>true</optional>
102         </dependency>
103         <dependency>
104             <groupId>com.sun.xml.ws</groupId>
105             <artifactId>httpspi-servlet</artifactId>
106             <version>${project.version}</version>
107             <classifier>sources</classifier>
108             <optional>true</optional>
109         </dependency>
110         <dependency>
111             <groupId>com.sun.xml.ws</groupId>
112             <artifactId>servlet</artifactId>
113             <version>${project.version}</version>
114             <classifier>sources</classifier>
115             <optional>true</optional>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-dependency-plugin</artifactId>
124                 <executions>
125                     <execution>
126                         <id>unpack-classes</id>
127                         <phase>generate-sources</phase>
128                         <goals>
129                             <goal>unpack</goal>
130                         </goals>
131                         <configuration>
132                             <artifactItems>
133                                 <artifactItem>
134                                     <groupId>com.sun.xml.ws</groupId>
135                                     <artifactId>rt</artifactId>
136                                     <version>${project.version}</version>
137                                     <type>jar</type>
138                                     <outputDirectory>${project.build.directory}/classes</outputDirectory>
139                                 </artifactItem>
140                                 <artifactItem>
141                                     <groupId>com.sun.xml.ws</groupId>
142                                     <artifactId>rt-fi</artifactId>
143                                     <version>${project.version}</version>
144                                     <type>jar</type>
145                                     <outputDirectory>${project.build.directory}/classes</outputDirectory>
146                                 </artifactItem>
147                                 <artifactItem>
148                                     <groupId>com.sun.xml.ws</groupId>
149                                     <artifactId>httpspi-servlet</artifactId>
150                                     <version>${project.version}</version>
151                                     <type>jar</type>
152                                     <outputDirectory>${project.build.directory}/classes</outputDirectory>
153                                 </artifactItem>
154                                 <artifactItem>
155                                     <groupId>com.sun.xml.ws</groupId>
156                                     <artifactId>servlet</artifactId>
157                                     <version>${project.version}</version>
158                                     <type>jar</type>
159                                     <outputDirectory>${project.build.directory}/classes</outputDirectory>
160                                 </artifactItem>
161                             </artifactItems>
162                             <excludes>**/module-info.class</excludes>
163                         </configuration>
164                     </execution>
165                 </executions>
166             </plugin>
167             <plugin>
168                 <artifactId>maven-deploy-plugin</artifactId>
169                 <configuration>
170                     <skip>true</skip>
171                 </configuration>
172             </plugin>
173             <plugin>
174                 <artifactId>maven-javadoc-plugin</artifactId>
175                 <configuration>
176                     <skip>true</skip>
177                 </configuration>
178             </plugin>
179         </plugins>
180     </build>
181 </project>