|
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <parent> |
| 5 | + <groupId>com.github.docker-java</groupId> |
| 6 | + <artifactId>docker-java-parent</artifactId> |
| 7 | + <version>3.1.6-SNAPSHOT</version> |
| 8 | + <relativePath>../pom.xml</relativePath> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>docker-java-api</artifactId> |
| 12 | + <packaging>bundle</packaging> |
| 13 | + |
| 14 | + <name>docker-java-api</name> |
| 15 | + <url>https://github.com/docker-java/docker-java</url> |
| 16 | + <description>Java API Client for Docker</description> |
| 17 | + |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 21 | + <artifactId>jackson-databind</artifactId> |
| 22 | + <version>${jackson.version}</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>commons-lang</groupId> |
| 26 | + <artifactId>commons-lang</artifactId> |
| 27 | + <version>${commons-lang.version}</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>commons-codec</groupId> |
| 31 | + <artifactId>commons-codec</artifactId> |
| 32 | + <version>${commons-codec.version}</version> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <dependency> |
| 36 | + <groupId>com.google.guava</groupId> |
| 37 | + <artifactId>guava</artifactId> |
| 38 | + <version>${guava.version}</version> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>com.google.code.findbugs</groupId> |
| 43 | + <artifactId>annotations</artifactId> |
| 44 | + <version>3.0.1u2</version> |
| 45 | + <scope>provided</scope> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
| 48 | + |
| 49 | + <build> |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.felix</groupId> |
| 53 | + <artifactId>maven-bundle-plugin</artifactId> |
| 54 | + <extensions>true</extensions> |
| 55 | + <configuration> |
| 56 | + <instructions> |
| 57 | + <Export-Package>com.github.dockerjava.api.*</Export-Package> |
| 58 | + </instructions> |
| 59 | + </configuration> |
| 60 | + </plugin> |
| 61 | + </plugins> |
| 62 | + </build> |
| 63 | +</project> |
0 commit comments