java-buildpack-client-certificate-mapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cloudfoundry</groupId> <artifactId>java-buildpack-client-certificate-mapper</artifactId> <version>2.0.1</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/maven-v4_0_0.xsd"> <parent> <artifactId>java-buildpack-client-certificate-mapper-parent</artifactId> <groupId>org.cloudfoundry</groupId> <version>2.0.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>java-buildpack-client-certificate-mapper</artifactId> <name>Cloud Foundry Client Certificate Mapper</name> <url>https://github.com/cloudfoundry/java-buildpack-client-certificate-mapper</url> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <zip> <zipgroupfileset /> <zipgroupfileset /> </zip> </target> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>default-deploy</id> <phase>none</phase> <goals> <goal>deploy</goal> </goals> </execution> <execution> <id>deploy-javadoc</id> <phase>deploy</phase> <goals> <goal>deploy-file</goal> </goals> <configuration> <file>target/${project.artifactId}-${version}-javadoc.jar</file> <url>file://${env.REPOSITORY}</url> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>javadoc</packaging> </configuration> </execution> <execution> <id>other-default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <filters> <filter> <artifact>org.cloudfoundry:java-buildpack-client-certificate-mapper-*</artifact> <excludes> <exclude>META-INF/**/*</exclude> </excludes> </filter> </filters> <shadeSourcesContent>true</shadeSourcesContent> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>