codegist-crest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.codegist.crest</groupId>
<artifactId>codegist-crest</artifactId>
<version>2.0.0-RC1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2011 CodeGist.org
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ ===================================================================
~
~ More information at http://www.codegist.org.
-->
<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>
<parent>
<groupId>org.codegist.crest</groupId>
<artifactId>crest-parent</artifactId>
<version>2.0.0-RC1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>codegist-crest</artifactId>
<name>CRest</name>
<packaging>jar</packaging>
<url>http://crest.codegist.org/</url>
<description>CRest is a lightweight JAX-RS compatible annotation-driven java library that aims to simplify the integration of third party RESTful services allowing the developer to focus on the essential aspects of the integration.</description>
<scm>
<url>https://github.com/codegist/crest</url>
<connection>scm:git:git://github.com/codegist/crest.git</connection>
<developerConnection>scm:git:git://github.com/codegist/crest.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadedGroupFilter>org.codegist</shadedGroupFilter>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>all</shadedClassifierName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<charset>UTF-8</charset>
<show>public</show>
<source>1.5</source>
<links>
<link>http://common.codegist.org/apidocs/</link>
<link>${project.javadoc.javase}</link>
<link>http://jackson.codehaus.org/1.6.0/javadoc/</link>
<link>http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/</link>
<link>http://jsr311.java.net/nonav/releases/1.1/</link>
<link>http://cglib.sourceforge.net/apidocs/</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.codegist</groupId>
<artifactId>codegist-common</artifactId>
<version>2.0.0-RC1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>