concord-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.walmartlabs.concord.docker</groupId> <artifactId>concord-server</artifactId> <version>2.32.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.walmartlabs.concord.docker</groupId> <artifactId>parent</artifactId> <version>2.32.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>concord-server</artifactId> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <properties> <server.image>${docker.namespace}/concord-server</server.image> <docker.tagbase>${server.image}</docker.tagbase> <docker.file>oss/Dockerfile</docker.file> <docker.allowPull>false</docker.allowPull> </properties> <dependencies> <!-- dependency tree fix for mvnd --> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server</artifactId> <version>${project.version}</version> <type>pom</type> <scope>test</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dist</id> <phase>prepare-package</phase> <goals> <goal>copy</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dist</outputDirectory> <artifactItems> <artifactItem> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server</artifactId> <version>${project.version}</version> <type>tar.gz</type> <classifier>dist</classifier> <destFileName>server.tar.gz</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>docker-build</id> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> </project>