docker-compose-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.inventiosystems</groupId> <artifactId>docker-compose-java</artifactId> <version>1.0.0</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <groupId>com.inventiosystems</groupId> <artifactId>docker-compose-java</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Docker Compose Java</name> <description>Library to interact with docker-compose.yamls and the docker-compose cli (currently implemented in Python)</description> <url>https://github.com/pgerhard/docker-compose-java</url> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE - V3</name> <url>https://github.com/pgerhard/docker-compose-java/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Philipp Gerhard</name> <email>philipp.gerhard@me.com</email> <organization>Inventio Systems</organization> <organizationUrl>https://inventiosystems.azurewebsites.net/index.html</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/pgerhard/docker-compose-java.git</connection> <developerConnection>scm:git:ssh://git@github.com:pgerhard/docker-compose-java.git</developerConnection> <url>https://github.com/pgerhard/docker-compose-java</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh-snapshots</id><name>Central Snaphshot Repository OSSRH</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>11</java.version> <license.licenseName>apache_2.0</license.licenseName> <license.inceptionYear>2017</license.inceptionYear> <license.organizationName>Inventio Systems</license.organizationName> <license.licenseResolver>${project.baseUri}/src/license</license.licenseResolver> <license.addJavaLicenseAfterPackage>false</license.addJavaLicenseAfterPackage> <maven.sources.plugin.enabled>none</maven.sources.plugin.enabled> <maven.javadoc.plugin.enabled>none</maven.javadoc.plugin.enabled> <maven.gpg.plugin.enabled>none</maven.gpg.plugin.enabled> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core --> <dependency> <groupId>org.jgrapht</groupId> <artifactId>jgrapht-core</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.29</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <target>1.8</target> <source>1.8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>${maven.sources.plugin.enabled}</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <phase>${maven.javadoc.plugin.enabled}</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>${maven.gpg.plugin.enabled}</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ci</id> <properties> <maven.gpg.plugin.enabled>verify</maven.gpg.plugin.enabled> <maven.sources.plugin.enabled>package</maven.sources.plugin.enabled> <maven.javadoc.plugin.enabled>package</maven.javadoc.plugin.enabled> </properties> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow --> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>