https-client-example-1.0.pom
Checksums
MD5
|
b7ab63b0d749cf68044b145cef993d3d
|
SHA1
|
82f98f651aed50823a111011c4bdac0a397d44ad
|
SHA256
|
d78fe73ae927c6b45ed50d832621f74d9df64aec7215930023bd1eb82e71272f
|
SHA512
|
a40fc45957759948e4c82e60f62bad492067d148eb8f907b554e85627ce39e95d928407ec9dbc4c48ab6a72f89448d87a7e4ec0b99f146a344ccd61a171549e4
|
POM
<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>
<groupId>io.packagecloud</groupId>
<artifactId>https-client-example</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>https-client-example</name>
<url>http://packagecloud.io</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>io.packagecloud.https_client_example.Main</mainClass>
<manifestEntries>
<Implementation-Vendor>io.packagecloud</Implementation-Vendor>
<Implementation-Title>https-client-example</Implementation-Title>
<Implementation-Version>1.0</Implementation-Version>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>io.packagecloud.https_client_example.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>