0 Star 0 Fork 0

基础平台组件/sso

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.44 KB
一键复制 编辑 原始数据 按行查看 历史
fuc 提交于 2017-08-29 09:33 +08:00 . 优化单点登录代码, 新增登出业务代码
<?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>cn.platform.agent.sso</groupId>
<artifactId>sso-main</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>sso-main</name>
<modules>
<module>sso-server</module>
<module>sso-cache</module>
<module>sso-core</module>
</modules>
<properties>
<!-- 框架组件 -->
<platform.frame.core.version>1.0.0-SNAPSHOT</platform.frame.core.version>
<platform.frame.web.version>1.0.0-SNAPSHOT</platform.frame.web.version>
<!-- 测试相关 -->
<junit.version>4.12</junit.version>
<spring-session-data-redis.version>1.2.1.RELEASE</spring-session-data-redis.version>
<guava.version>19.0</guava.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<!-- ============================================== -->
<!-- 依赖组件管理,子工程显示声明groupId和artifactId -->
<!-- ============================================== -->
<dependencyManagement>
<dependencies>
<!-- 引用项目依赖关系frame框架 -->
<dependency>
<groupId>cn.platform.agent.frame</groupId>
<artifactId>frame-core</artifactId>
<version>${platform.frame.core.version}</version>
</dependency>
<dependency>
<groupId>cn.platform.agent.frame</groupId>
<artifactId>frame-web</artifactId>
<version>${platform.frame.web.version}</version>
</dependency>
<!-- cache -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>sso-cache</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>sso-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>${junit.version}</version>
</dependency>
<!-- test end -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
<version>${spring-session-data-redis.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
</plugin>
<!-- Compile -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/platform-agent/sso.git
git@gitee.com:platform-agent/sso.git
platform-agent
sso
sso
master

搜索帮助