14 Star 18 Fork 18

黄勇 / smart-sso

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
黄勇 提交于 2014-06-09 14:14 . 【I】在 pom 中去掉 smart-root 路径
<?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>
<parent>
<groupId>org.smart4j</groupId>
<artifactId>smart-root</artifactId>
<version>1.0</version>
</parent>
<artifactId>smart-sso</artifactId>
<version>1.0</version>
<name>smart-sso</name>
<description>Smart SSO</description>
<url>http://www.smart4j.org/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>huangyong</name>
<email>huangyong.java@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@git.oschina.net:huangyong/smart-sso.git</connection>
<developerConnection>scm:git:git@git.oschina.net:huangyong/smart-sso.git</developerConnection>
<url>git@git.oschina.net:huangyong/smart-sso.git</url>
</scm>
<properties>
<junit.version>4.11</junit.version>
<slf4j.version>1.7.5</slf4j.version>
<servlet.version>3.0.1</servlet.version>
<cas.version>3.2.1</cas.version>
</properties>
<dependencies>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>provided</scope>
</dependency>
<!-- SLF4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<!-- CAS -->
<dependency>
<groupId>org.jasig.cas.client</groupId>
<artifactId>cas-client-core</artifactId>
<version>${cas.version}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
Java
1
https://gitee.com/huangyong/smart-sso.git
git@gitee.com:huangyong/smart-sso.git
huangyong
smart-sso
smart-sso
master

搜索帮助