|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
| 5 | +
|
| 6 | + Copyright (c) 2015 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 | + http://glassfish.java.net/public/CDDL+GPL_1_1.html |
| 14 | + or packager/legal/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 packager/legal/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 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 44 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 45 | + <modelVersion>4.0.0</modelVersion> |
| 46 | + |
| 47 | + <parent> |
| 48 | + <groupId>org.glassfish.jersey.incubator</groupId> |
| 49 | + <artifactId>project</artifactId> |
| 50 | + <version>3.0-SNAPSHOT</version> |
| 51 | + </parent> |
| 52 | + |
| 53 | + <artifactId>jersey-jdk-connector</artifactId> |
| 54 | + <packaging>jar</packaging> |
| 55 | + <name>jersey-connectors-jdk</name> |
| 56 | + |
| 57 | + <description>Jersey Client Transport via JDK AIO</description> |
| 58 | + |
| 59 | + <properties> |
| 60 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 61 | + </properties> |
| 62 | + |
| 63 | + <build> |
| 64 | + <plugins> |
| 65 | + <plugin> |
| 66 | + <groupId>com.sun.istack</groupId> |
| 67 | + <artifactId>maven-istack-commons-plugin</artifactId> |
| 68 | + <inherited>true</inherited> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>org.codehaus.mojo</groupId> |
| 72 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 73 | + <inherited>true</inherited> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </build> |
| 77 | + |
| 78 | + <dependencies> |
| 79 | + <dependency> |
| 80 | + <groupId>org.glassfish.jersey.core</groupId> |
| 81 | + <artifactId>jersey-client</artifactId> |
| 82 | + <version>${project.version}</version> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 86 | + <artifactId>jersey-test-framework-provider-bundle</artifactId> |
| 87 | + <version>${project.version}</version> |
| 88 | + <type>pom</type> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>junit</groupId> |
| 93 | + <artifactId>junit</artifactId> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + </dependencies> |
| 97 | +</project> |
0 commit comments