|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 7 | + <artifactId>plugin</artifactId> |
| 8 | + <version>2.4</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>docker-java-api</artifactId> |
| 12 | + <version>3.0.0-RC4-SNAPSHOT</version> |
| 13 | + <packaging>hpi</packaging> |
| 14 | + |
| 15 | + <name>Docker API Plugin</name> |
| 16 | + <description>Plugin providing Docker API for other plugins. Wrap docker-java and required dependency for Netty transport only. JAX-RS default transport is not usable</description> |
| 17 | + |
| 18 | + <scm> |
| 19 | + <connection>scm:git:ssh://github.com/ydubreuil/docker-api-plugin.git</connection> |
| 20 | + < developerConnection>scm:git:ssh:// [email protected]/ydubreuil/docker-api-plugin.git</ developerConnection> |
| 21 | + <url>https://github.com/ydubreuil/docker-api-plugin</url> |
| 22 | + <tag>HEAD</tag> |
| 23 | + </scm> |
| 24 | + |
| 25 | + <properties> |
| 26 | + <jenkins.version>1.609.1</jenkins.version> |
| 27 | + <java.level>7</java.level> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <licenses> |
| 31 | + <license> |
| 32 | + <name>MIT</name> |
| 33 | + <url>http://opensource.org/licenses/MIT</url> |
| 34 | + </license> |
| 35 | + </licenses> |
| 36 | + |
| 37 | + <repositories> |
| 38 | + <repository> |
| 39 | + <id>repo.jenkins-ci.org</id> |
| 40 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 41 | + </repository> |
| 42 | + </repositories> |
| 43 | + <pluginRepositories> |
| 44 | + <pluginRepository> |
| 45 | + <id>repo.jenkins-ci.org</id> |
| 46 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 47 | + </pluginRepository> |
| 48 | + </pluginRepositories> |
| 49 | + |
| 50 | + <dependencies> |
| 51 | + <dependency> |
| 52 | + <groupId>com.github.docker-java</groupId> |
| 53 | + <artifactId>docker-java</artifactId> |
| 54 | + <version>3.0.0-RC4</version> |
| 55 | + <exclusions> |
| 56 | + <!-- use the version supplied by jackson2-api --> |
| 57 | + <exclusion> |
| 58 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 59 | + <artifactId>jackson-databind</artifactId> |
| 60 | + </exclusion> |
| 61 | + <exclusion> |
| 62 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 63 | + <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 64 | + </exclusion> |
| 65 | + |
| 66 | + <!-- use versions supplied with Jenkins --> |
| 67 | + <exclusion> |
| 68 | + <groupId>commons-codec</groupId> |
| 69 | + <artifactId>commons-codec</artifactId> |
| 70 | + </exclusion> |
| 71 | + <exclusion> |
| 72 | + <groupId>commons-io</groupId> |
| 73 | + <artifactId>commons-io</artifactId> |
| 74 | + </exclusion> |
| 75 | + <exclusion> |
| 76 | + <groupId>commons-lang</groupId> |
| 77 | + <artifactId>commons-lang</artifactId> |
| 78 | + </exclusion> |
| 79 | + |
| 80 | + <!-- disable JAX-RS transport, otherwise, it requires shading and messy stuff --> |
| 81 | + <exclusion> |
| 82 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 83 | + <artifactId>jersey-apache-connector</artifactId> |
| 84 | + </exclusion> |
| 85 | + <exclusion> |
| 86 | + <groupId>org.apache.httpcomponents</groupId> |
| 87 | + <artifactId>httpclient</artifactId> |
| 88 | + </exclusion> |
| 89 | + <exclusion> |
| 90 | + <groupId>org.glassfish.jersey.core</groupId> |
| 91 | + <artifactId>jersey-client</artifactId> |
| 92 | + </exclusion> |
| 93 | + <exclusion> |
| 94 | + <groupId>com.google.guava</groupId> |
| 95 | + <artifactId>guava</artifactId> |
| 96 | + </exclusion> |
| 97 | + </exclusions> |
| 98 | + </dependency> |
| 99 | + |
| 100 | + <dependency> |
| 101 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 102 | + <artifactId>jackson2-api</artifactId> |
| 103 | + <version>2.6.4</version> |
| 104 | + </dependency> |
| 105 | + </dependencies> |
| 106 | +</project> |
0 commit comments