Maven Repository - POM file for Spring spring-plugin-core 1.1.0.RELEASE 1.1.0.RELEASE

Summary

Spring Plugin - Core.

Core plugin infrastructure.

Declaration

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

<dependency>
   <groupId>org.springframework.plugin</groupId>
   <artifactId>spring-plugin-core</artifactId>
   <version>1.1.0.RELEASE</version>
</dependency>

If you think this Maven repository POM file listing for spring-plugin-core 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.

<?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">
  <modelVersion>4.0.0</modelVersion>
  
  <artifactId>spring-plugin-core</artifactId>

  <name>Spring Plugin - Core</name>
  <description>Core plugin infrastructure</description>

  <parent>
    <groupId>org.springframework.plugin</groupId>
    <artifactId>spring-plugin</artifactId>
    <version>1.1.0.RELEASE</version>
  </parent>

  <dependencies>
  
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</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-context</artifactId>
      <version>${spring.version}</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
      <version>${spring.version}</version>
    </dependency>
    
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>${spring.version}</version>
      <scope>test</scope>
    </dependency>

  </dependencies>

</project>