Maven Repository - POM file for Spring spring-hateoas 0.5.0.RELEASE 0.5.0.RELEASE

Summary

Spring Hateoas.

Library to support implementing representations for hyper-text driven REST web services..

Declaration

Here is the list of declaration for spring-hateoas. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.springframework.hateoas</groupId>
   <artifactId>spring-hateoas</artifactId>
   <version>0.5.0.RELEASE</version>
</dependency>

If you think this Maven repository POM file listing for spring-hateoas is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Apache License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.





Depends on

The spring-hateoas-0.5.0.RELEASE has 20 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JSONjackson-core-asl 1.9.10
Jackson is a high-performance JSON processor (parser, generator)
34
JSONjackson-mapper-asl 1.9.10
Data Mapper package is a high-performance data binding package built on Jackson JSON processor
35
JEEjackson-annotations 2.1.1
Core annotations used for value types, used by Jackson data binding package.
41
JEEjackson-databind 2.1.1
General data-binding functionality for Jackson: works on core streaming API
45
Data Structureevo-inflector 1.0.1
Evo Inflector implements English pluralization algorithm.
9
Logslf4j-api 1.7.2
The slf4j API
348
Logjcl-over-slf4j 1.7.2
JCL 1.1.1 implemented over SLF4J
21
Loglogback-classic 1.0.9
logback-classic module
107
Testinghamcrest-library 1.2.1
Hamcrest library of matcher implementations.
46
JUnitjunit-dep 4.10
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
177
Testing Mockmockito-all 1.9.0
Mock objects library for java
257
Java Libraryjoda-time 2.1
Date and time library to replace JDK date handling
266




Plugin

The following plugins are used in the spring-hateoas-0.5.0.RELEASE.jar

  1. com.springsource.bundlor.maven
  2. maven-compiler-plugin
  3. maven-jar-plugin
  4. maven-javadoc-plugin
  5. maven-source-plugin

Packages

The following packages are defined in the spring-hateoas-0.5.0.RELEASE.jar

org.springframework.hateoas
org.springframework.hateoas.config
org.springframework.hateoas.core
org.springframework.hateoas.hal
org.springframework.hateoas.jaxrs
org.springframework.hateoas.mvc




POM File Source

Here is the content of the POM file.

<?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>
  
  <groupId>org.springframework.hateoas</groupId>
  <artifactId>spring-hateoas</artifactId>
  <version>0.5.0.RELEASE</version>
  
  <name>Spring Hateoas</name>
  <url>http://github.com/SpringSource/spring-hateoas</url>
  <description>
    Library to support implementing representations for
    hyper-text driven REST web services.
  </description>
  
  <inceptionYear>2012</inceptionYear>
  
  <organization>
    <name>SpringSource, a division of VMware</name>
    <url>http://www.springsource.org</url>
  </organization>
  
  
  
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <comments>
      Copyright 2011 the original author or authors.
       
      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.
      </comments>
    </license>
  </licenses>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <spring.version>3.1.4.RELEASE</spring.version>
    <logback.version>1.0.9</logback.version>
    <jackson1.version>1.9.10</jackson1.version>
    <jackson2.version>2.1.1</jackson2.version>
    <jaxrs.version>1.0</jaxrs.version>
    <jsonpath.version>0.8.1</jsonpath.version>
    <minidevjson.version>1.1.1</minidevjson.version>
    <slf4j.version>1.7.2</slf4j.version>
    <evo.version>1.0.1</evo.version>
    <bundlor.failOnWarnings>true</bundlor.failOnWarnings>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>${spring.version}</version>
      <exclusions>
        <exclusion>
          <groupId>commons-logging</groupId>
          <artifactId>commons-logging</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>${spring.version}</version>
    </dependency>
    
    <dependency>
      <groupId>org.springframework.plugin</groupId>
      <artifactId>spring-plugin-core</artifactId>
      <version>0.8.0.RELEASE</version>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <version>2.2.2</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version>
      <scope>provided</scope>
    </dependency>
    
    <dependency>
      <groupId>org.codehaus.jackson</groupId>
      <artifactId>jackson-core-asl</artifactId>
      <version>${jackson1.version}</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.codehaus.jackson</groupId>
      <artifactId>jackson-mapper-asl</artifactId>
      <version>${jackson1.version}</version>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>${jackson2.version}</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>${jackson2.version}</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>jsr311-api</artifactId>
      <version>${jaxrs.version}</version>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>com.jayway.jsonpath</groupId>
      <artifactId>json-path</artifactId>
      <version>${jsonpath.version}</version>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>org.atteo</groupId>
      <artifactId>evo-inflector</artifactId>
      <version>${evo.version}</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>${slf4j.version}</version>
    </dependency>
    
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>jcl-over-slf4j</artifactId>
      <version>${slf4j.version}</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>${logback.version}</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.2.1</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit-dep</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>${spring.version}</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.0</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>2.1</version>
      <scope>test</scope>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>com.springsource.bundlor</groupId>
        <artifactId>com.springsource.bundlor.maven</artifactId>
        <version>1.0.0.RELEASE</version>
        <configuration>
          <failOnWarnings>${bundlor.failOnWarnings}</failOnWarnings>
        </configuration>
        <executions>
          <execution>
            <id>bundlor</id>
            <goals>
              <goal>bundlor</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <configuration>
          <useDefaultManifestFile>true</useDefaultManifestFile>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.8</version>
        <executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
            <phase>package</phase>
          </execution>
        </executions>
        <configuration>
          <breakiterator>true</breakiterator>
          <header>${project.name}</header>
          <source>1.5</source>
          <quiet>true</quiet>
          <javadocDirectory>${project.basedir}/src/main/javadoc</javadocDirectory>
          <overview>${project.basedir}/src/main/javadoc/overview.html</overview>
          <stylesheetfile>${project.basedir}/src/main/javadoc/spring-javadoc.css</stylesheetfile>
          <!-- copies doc-files subdirectory which contains image resources -->
          <docfilessubdirs>true</docfilessubdirs>
          <links>
            <link>http://static.springframework.org/spring/docs/3.1.x/javadoc-api</link>
            <link>http://download.oracle.com/javase/1.5.0/docs/api</link>
          </links>
        </configuration>
      </plugin>
      
    </plugins>
  </build>
  
  <pluginRepositories>
    <pluginRepository>
      <id>spring-plugins-release</id>
      <url>http://repo.springsource.org/plugins-release</url>
    </pluginRepository>
  </pluginRepositories>
  
  <repositories>
    <repository>
      <id>spring-snapshots</id>
      <url>http://repo.springsource.org/libs-snapshot</url>
    </repository>
  </repositories>
  
  <scm>
    <url>https://github.com/SpringSource/spring-hateoas</url>
    <connection>scm:git:git://github.com/SpringSource/spring-hateoas.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:SpringSource/spring-hateoas.git</developerConnection>
  </scm>
  
</project>