| POM: |
Show
hide
<?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>symphonyoss</artifactId>
<groupId>org.symphonyoss</groupId>
<version>2</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.symphonyoss.symphony</groupId>
<artifactId>jcurl</artifactId>
<name>JCurl</name>
<version>0.9.8</version>
<description>JSON-aware curl(1) in Java</description>
<url>https://github.com/symphonyoss/jcurl</url>
<developers>
<developer>
<id>ldrozdz</id>
<name>Łukasz Dróżdż</name>
<email>lukasz@symphony.com</email>
<url>http://github.com/ldrozdz</url>
<organization>Symphony Communication Services LLC</organization>
<organizationUrl>http://symphony.com</organizationUrl>
<roles>
<role>Senior Developer Platform</role>
</roles>
</developer>
<developer>
<id>bruceskingle</id>
<name>Bruce Skingle</name>
<email>bruce.skingle@symphony.com</email>
<url>http://github.com/bruceskingle</url>
<organization>Symphony Communication Services LLC</organization>
<organizationUrl>http://symphony.com</organizationUrl>
<roles>
<role>Principal Software Engineer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Adrian Zarifis</name>
<email>adrian.zarifis@symphony.com</email>
<organization>Symphony</organization>
<roles>
<role>QA Engineer</role>
</roles>
</contributor>
<contributor>
<name>Daniel Nathanson</name>
<email>daniel.nathanson@symphony.com</email>
<organization>Symphony Communication Services LLC</organization>
<roles>
<role>Senior Director Platform Engineering</role>
</roles>
</contributor>
<contributor>
<name>Paul Teyssier</name>
<email>p@symphony.com</email>
<organization>Symphony Communication Services LLC</organization>
<roles>
<role>Senior Director Platform</role>
</roles>
</contributor>
</contributors>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/symphonyoss/jcurl.git</connection>
<developerConnection>scm:git:git@github.com:symphonyoss/jcurl.git</developerConnection>
<tag>jcurl-0.9.8</tag>
<url>https://github.com/symphonyoss/jcurl</url>
</scm>
<build>
<finalName>jcurl</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.symphonyoss.symphony.jcurl.JCurl</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>disable-java8-doclint</id>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<jackson.version>2.7.3</jackson.version>
<maven.shade.version>3.0.0</maven.shade.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<junit.version>4.12</junit.version>
</properties>
</project>
|