Maven Repository - POM file for Spring composite-spring-web 4.1.1 4.1.1

Summary

Open Source New Zealand - Composite Spring Web.

Collection of the standard spring web dependencies.

Declaration

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

<dependency>
   <groupId>nz.net.osnz.composite</groupId>
   <artifactId>composite-spring-web</artifactId>
   <version>4.1.1</version>
</dependency>

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

POM File Source

Here is the content of the POM file.

<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>nz.net.osnz.parent</groupId>
    <artifactId>central-parent</artifactId>
    <version>3.1</version>
  </parent>

  <groupId>nz.net.osnz.composite</groupId>
  <artifactId>composite-spring-web</artifactId>
  <version>4.1.1</version>
  <packaging>jar</packaging>

  <name>Open Source New Zealand - Composite Spring Web</name>
  <description>Collection of the standard spring web dependencies</description>
  <url>https://github.com/OpenSourceNZ/composite-spring-web</url>

  <properties>
    <spring-core.version>4.1.1.RELEASE</spring-core.version>
  </properties>

  <dependencies>

    <dependency>
      <groupId>nz.net.osnz.composite</groupId>
      <artifactId>composite-spring</artifactId>
      <version>[4.1.1,5)</version>
    </dependency>

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

    <dependency>
      <groupId>nz.net.osnz.composite</groupId>
      <artifactId>composite-servlet</artifactId>
      <version>[1.1,)</version>
    </dependency>    

  </dependencies>

  <scm>
      <url>https://github.com/OpenSourceNZ/composite-spring-web</url>
      <connection>scm:git:git@github.com:OpenSourceNZ/composite-spring-web.git</connection>
      <developerConnection>scm:git:git@github.com:OpenSourceNZ/composite-spring-web.git</developerConnection>
      <tag>composite-spring-web-4.1.1</tag>
  </scm>  
  
</project>