customer-portfolio-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.open-accelerators</groupId> <artifactId>customer-portfolio-common</artifactId> <version>1.0.2</version> </dependency>
<?xml version="1.0"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.open-accelerators</groupId> <artifactId>customer-portfolio</artifactId> <version>1.0.2</version> </parent> <artifactId>customer-portfolio-common</artifactId> <name>Service Domains :: CustomerPortfolio :: Common</name> <dependencies> <dependency> <groupId>io.github.open-accelerators</groupId> <artifactId>mercury-common</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>${project.groupId}</groupId> <artifactId>mercury-maven-plugin</artifactId> <version>${project.parent.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>CommonModel</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>