当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
151 Star 283 Fork 111

Qeng / Jlight
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 6.07 KB
一键复制 编辑 原始数据 按行查看 历史
GoQeng 提交于 2017-07-16 21:02 . fix ant-run error
<?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.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.2.RELEASE</version>
</parent>
<groupId>com.lew.jlight</groupId>
<artifactId>jlight-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<modules>
<module>jlight-assembly</module>
<module>jlight-core</module>
<module>jlight-web</module>
<module>jlight-mybatis</module>
<module>jlight-redis</module>
</modules>
<properties>
<jdk.version>1.8</jdk.version>
<maven-compiler.version>3.5.1</maven-compiler.version>
<jacksonAsl.version>1.9.13</jacksonAsl.version>
<guava.version>19.0</guava.version>
<jsp.version>2.1</jsp.version>
<mybatis.version>3.4.1</mybatis.version>
<cglib.version>3.2.4</cglib.version>
<shiroExtra.version>1.0.2</shiroExtra.version>
<spring.mybatis.version>1.3.0</spring.mybatis.version>
<druid.version>1.0.26</druid.version>
<jedis.version>2.9.0</jedis.version>
<mysql.version>6.0.5</mysql.version>
<shiro.version>1.3.2</shiro.version>
<ehcache.version>2.5.0</ehcache.version>
<ant.launcher.version>1.9.4</ant.launcher.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>${ant.launcher.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>${shiro.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>${shiro.version}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
<version>${shiro.version}</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<version>${shiro.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jacksonAsl.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<scope>provided</scope>
<version>${jsp.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>com.github.theborakompanioni</groupId>
<artifactId>thymeleaf-extras-shiro</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>${cglib.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${spring.mybatis.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dev</id>
<properties>
<activatedProfile>dev</activatedProfile>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>test</id>
<properties>
<activatedProfile>test</activatedProfile>
</properties>
</profile>
<profile>
<id>product</id>
<properties>
<activatedProfile>product</activatedProfile>
</properties>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/L_goq/Jlight.git
git@gitee.com:L_goq/Jlight.git
L_goq
Jlight
Jlight
master

搜索帮助