apicurio-registry-distro-docker-compose
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-distro-docker-compose</artifactId> <version>2.6.8.Final</version> </dependency>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-distro</artifactId> <version>2.6.8.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>apicurio-registry-distro-docker-compose</artifactId> <packaging>pom</packaging> <name>apicurio-registry-distro-docker-compose</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${project.artifactId}-${project.version}</finalName> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <archiverConfig> <defaultDirectoryMode>0755</defaultDirectoryMode> </archiverConfig> <tarLongFileMode>${tar.long.file.mode}</tarLongFileMode> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>