hdp-capability-registry
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dell.cpsd</groupId> <artifactId>hdp-capability-registry</artifactId> <version>1.0.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> <!-- Copyright (c) 2017 Dell Inc. or its subsidiaries. All Rights Reserved. --> <parent> <groupId>com.dell.cpsd</groupId> <artifactId>hdp-capability-registry-parent</artifactId> <version>1.0.0</version> </parent> <packaging>jar</packaging> <artifactId>hdp-capability-registry</artifactId> <properties> <spring.boot.version>1.5.3.RELEASE</spring.boot.version> <skip.integration.tests>true</skip.integration.tests> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>${spring.boot.version}</version> </dependency> <dependency> <groupId>com.dell.cpsd</groupId> <artifactId>hdp-capability-registry-api</artifactId> <classifier>schemas</classifier> <type>zip</type> <version>1.0.0</version> </dependency> <dependency> <groupId>com.dell.cpsd</groupId> <artifactId>common-rabbitmq</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <executions> <execution> <phase>generate-sources</phase> <id>unpack-json-schemas-hdp-capability-registry-api</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeGroupIds>com.dell.cpsd</includeGroupIds> <includeArtifactIds>hdp-capability-registry-api</includeArtifactIds> <includes>**\/*.jsd</includes> </configuration> </execution> <execution> <id>copy-dependencies-for-distribution</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jsonschema2pojo</groupId> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <version>0.4.27</version> <dependencies> <dependency> <groupId>com.dell.cpsd</groupId> <artifactId>common-contract-enricher</artifactId> <version>2.0.0</version> </dependency> </dependencies> <executions> <execution> <id>generate-json-model-hdp-capability-registry-api</id> <phase>generate-resources</phase> <goals> <goal>generate</goal> </goals> <configuration> <sourceDirectory>${project.build.directory}/dependency/hdp-capability-registry-api/schema/json</sourceDirectory> <targetPackage>com.dell.cpsd.hdp.capability.registry.api</targetPackage> <outputDirectory>${project.build.directory}/generated-sources/hdp-capability-registry-api</outputDirectory> <useLongIntegers>true</useLongIntegers> <removeOldOutput>true</removeOldOutput> <includeConstructors>true</includeConstructors> <serializable>false</serializable> <includeAdditionalProperties>false</includeAdditionalProperties> <customAnnotator>com.dell.cpsd.common.contract.enricher.plugins.jsonschema2pojo.MessageAnnotator </customAnnotator> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> </plugin> </plugins> <resources> <resource> <directory>${project.basedir}/../</directory> <includes> <include>LICENSE.md</include> </includes> </resource> <resource> <directory>${project.basedir}/src/main/resources/</directory> </resource> </resources> </build> </project>