| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You 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. |
| --> |
| |
| <!-- $Rev$ $Date$ --> |
| |
| <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"> |
| <parent> |
| <artifactId>server</artifactId> |
| <groupId>org.apache.tomee</groupId> |
| <version>8.0.7-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>openejb-webservices</artifactId> |
| <packaging>jar</packaging> |
| <name>TomEE :: Server :: Webservices</name> |
| <properties> |
| <tomee.build.name>${project.groupId}.server.webservices</tomee.build.name> |
| </properties> |
| <dependencies> |
| <!-- workaround for SaajUniverseTest, our ProviderLocator doesnt use system property first - we should fix it --> |
| <!-- Removed as included in javaee-api-8.0.0 --> |
| <!--<dependency>--> |
| <!--<groupId>javax.xml.soap</groupId>--> |
| <!--<artifactId>javax.xml.soap-api</artifactId>--> |
| <!--<version>1.4.0-b01</version>--> |
| <!--</dependency>--> |
| |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>openejb-loader</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>openejb-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>openejb-server</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>openejb-http</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.tomee.bom</groupId> |
| <artifactId>jaxb-runtime</artifactId> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.swizzle</groupId> |
| <artifactId>swizzle-stream</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.xml.messaging.saaj</groupId> |
| <artifactId>saaj-impl</artifactId> |
| <version>${saaj-impl.version}</version> |
| </dependency> |
| |
| <!-- spec dependencies --> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>javaee-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>wsdl4j</groupId> |
| <artifactId>wsdl4j</artifactId> |
| </dependency> |
| |
| <!-- Test only dependencies --> |
| <dependency> |
| <groupId>axis</groupId> |
| <artifactId>axis</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |