19 Star 37 Fork 12

wkgcass / Pure.IoC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.78 KB
一键复制 编辑 原始数据 按行查看 历史
wkgcass@hotmail.com 提交于 2016-01-31 15:33 . 0.3.2 release
<?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">
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<name>Pure.IoC</name>
<description>Lightweight type and annotation based dependency injection framework</description>
<url>http://git.oschina.net/wkgcass/Pure.IoC</url>
<developers>
<developer>
<name>wkgcass</name>
<email>wkgcass@hotmail.com</email>
</developer>
</developers>
<scm>
<connection>
scm:git:https://git.oschina.net/wkgcass/Pure.IoC.git
</connection>
<developerConnection>
scm:git:https://git.oschina.net/wkgcass/Pure.IoC.git
</developerConnection>
<url>http://git.oschina.net/wkgcass/Pure.IoC</url>
</scm>
<licenses>
<license>
<name>MIT LICENSE</name>
<url>http://git.oschina.net/wkgcass/Pure.IoC/blob/master/LICENSE/</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<groupId>net.cassite</groupId>
<artifactId>pure.ioc</artifactId>
<version>0.3.2</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.2</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.cassite</groupId>
<artifactId>style</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2.2</version>
</dependency>
<!-- optional -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.2.3.RELEASE</version>
<optional>true</optional>
</dependency>
<!-- test scop -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Java
1
https://gitee.com/wkgcass/Pure.IoC.git
git@gitee.com:wkgcass/Pure.IoC.git
wkgcass
Pure.IoC
Pure.IoC
master

搜索帮助