You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.8 KiB
78 lines
2.8 KiB
<?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>
|
|
|
|
<modules>
|
|
<module>admin</module>
|
|
<module>wsqlite</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.2.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>xyz.wbsite</groupId>
|
|
<artifactId>nginx-admin-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<commons-io-version>2.6</commons-io-version>
|
|
<pagehelper-version>1.2.5</pagehelper-version>
|
|
<mybatis-version>1.3.2</mybatis-version>
|
|
<ehcache-version>1.1.0</ehcache-version>
|
|
<dozer-version>5.5.1</dozer-version>
|
|
<spring-cloud.version>Greenwich.RC2</spring-cloud.version>
|
|
<wsqlite>1.0-SNAPSHOT</wsqlite>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun-repos</id>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- Spring 微服务 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- 映射工具 -->
|
|
<dependency>
|
|
<groupId>net.sf.dozer</groupId>
|
|
<artifactId>dozer</artifactId>
|
|
<version>${dozer-version}</version>
|
|
</dependency>
|
|
<!-- 文件流处理 -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io-version}</version>
|
|
</dependency>
|
|
<!-- sqlite封装模块 -->
|
|
<dependency>
|
|
<groupId>xyz.wbsite</groupId>
|
|
<artifactId>wsqlite</artifactId>
|
|
<version>${wsqlite}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project> |