| <!-- |
| 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. |
| --> |
| <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/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.cloudstack</groupId> |
| <artifactId>cloudstack</artifactId> |
| <version>4.4.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <groupId>com.kpelykh</groupId> |
| <artifactId>docker-java</artifactId> |
| <packaging>jar</packaging> |
| <version>0.8.2-SNAPSHOT</version> |
| |
| <name>docker-java</name> |
| <url>https://github.com/kpelykh/docker-java</url> |
| <description>Java API Client for Docker</description> |
| |
| <scm> |
| <connection>scm:git:git@github.com:kpelykh/docker-java.git</connection> |
| <url>git@github.com:kpelykh/docker-java.git</url> |
| <developerConnection>scm:git:git@github.com:kpelykh/docker-java.git</developerConnection> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <developers> |
| <developer> |
| <id>kpelykh</id> |
| <name>Konstantin Pelykh</name> |
| <email>kpelykh@gmail.com</email> |
| </developer> |
| </developers> |
| |
| <properties> |
| <skipTests>true</skipTests> |
| |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <jdk.debug>true</jdk.debug> |
| <jdk.optimize>false</jdk.optimize> |
| <jdk.source>1.6</jdk.source> |
| <jdk.target>1.6</jdk.target> |
| |
| <version.slf4j>1.6.1</version.slf4j> |
| |
| <jersey.version>1.18</jersey.version> |
| <jersey-apache-client4.version>1.9</jersey-apache-client4.version> |
| |
| <httpclient.version>4.2.5</httpclient.version> |
| <commons-compress.version>1.5</commons-compress.version> |
| <commons-io.version>2.3</commons-io.version> |
| <commons-lang.version>2.6</commons-lang.version> |
| <slf4j-api.version>1.7.5</slf4j-api.version> |
| <jsr305.version>1.3.9</jsr305.version> |
| <jnr.unixsocket.version>0.3</jnr.unixsocket.version> |
| |
| <!--test dependencies --> |
| <version.logback>1.0.1</version.logback> |
| <version.testng>5.12.1</version.testng> |
| <hamcrest.library.version>1.3</hamcrest.library.version> |
| <hamcrest.jpa-matchers>1.6</hamcrest.jpa-matchers> |
| <lambdaj.version>2.3.3</lambdaj.version> |
| |
| |
| <maven-jar-plugin.version>2.2</maven-jar-plugin.version> |
| <maven-compiler-plugin.version>2.3.1</maven-compiler-plugin.version> |
| <maven-release-plugin.version>2.3.1</maven-release-plugin.version> |
| <maven-surefire-plugin.version>2.8.1</maven-surefire-plugin.version> |
| <cobertura-maven-plugin.version>2.5.1</cobertura-maven-plugin.version> |
| <maven-antrun-plugin.version>1.7</maven-antrun-plugin.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-core</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-client</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-json</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey.contribs</groupId> |
| <artifactId>jersey-multipart</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey.contribs</groupId> |
| <artifactId>jersey-apache-client4</artifactId> |
| <version>${jersey-apache-client4.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>${httpclient.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-compress</artifactId> |
| <version>${commons-compress.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>${commons-lang.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>${commons-io.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.github.jnr</groupId> |
| <artifactId>jnr-unixsocket</artifactId> |
| <version>${jnr.unixsocket.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j-api.version}</version> |
| </dependency> |
| |
| <!-- /// Test /////////////////////////// --> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-core</artifactId> |
| <version>${version.logback}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>${version.logback}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| <version>${version.testng}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-library</artifactId> |
| <version>${hamcrest.library.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.googlecode.lambdaj</groupId> |
| <artifactId>lambdaj</artifactId> |
| <version>${lambdaj.version}</version> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-all</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.testinfected.hamcrest-matchers</groupId> |
| <artifactId>jpa-matchers</artifactId> |
| <version>${hamcrest.jpa-matchers}</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>${maven-release-plugin.version}</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>${maven-compiler-plugin.version}</version> |
| <configuration> |
| <source>${jdk.source}</source> |
| <target>${jdk.target}</target> |
| <encoding>ISO-8859-1</encoding> |
| <debug>${jdk.debug}</debug> |
| <optimize>${jdk.optimize}</optimize> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>${maven-jar-plugin.version}</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>${maven-surefire-plugin.version}</version> |
| <configuration> |
| <skipTests>${skipTests}</skipTests> |
| </configuration> |
| </plugin> |
| |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>${cobertura-maven-plugin.version}</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>${maven-antrun-plugin.version}</version> |
| <executions> |
| <execution> |
| <phase>validate</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <tasks> |
| <echo>*******************************************************************</echo> |
| <echo>*******************************************************************</echo> |
| <echo>[project.name] : ${project.name}</echo> |
| <echo>[project.basedir] : ${project.basedir}</echo> |
| <echo>[project.version] : ${project.version}</echo> |
| <echo>[project.artifactId] ${project.artifactId}</echo> |
| <echo>[project.build.directory] ${project.build.directory}</echo> |
| <echo>[jdk.source] : ${jdk.source}</echo> |
| <echo>[jdk.target] : ${jdk.target}</echo> |
| <echo>[jdk.debug] : ${jdk.debug}</echo> |
| <echo>[jdk.optimize] : ${jdk.optimize}</echo> |
| <echo>[source encoding]: ${project.build.sourceEncoding}</echo> |
| <echo>[M2_HOME] : ${env.M2_HOME}</echo> |
| <echo>[LocalRepository] : ${settings.localRepository}</echo> |
| <echo>*******************************************************************</echo> |
| <echo>*******************************************************************</echo> |
| </tasks> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| </project> |