<?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>com.fzzy</groupId>
|
<artifactId>fzzy-service-view</artifactId>
|
<version>${service.version}</version>
|
|
<parent>
|
<artifactId>fzzy-service-parent</artifactId>
|
<groupId>com.fzzy</groupId>
|
<version>1.0.0</version>
|
<relativePath>../fzzy-service-parent/pom.xml</relativePath>
|
</parent>
|
|
|
<description>
|
view系统模块
|
</description>
|
|
<dependencies>
|
|
<!--引入cglib避免与shiro-redis冲突 -->
|
<dependency>
|
<groupId>cglib</groupId>
|
<artifactId>cglib-nodep</artifactId>
|
<version>2.1_3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.javassist</groupId>
|
<artifactId>javassist</artifactId>
|
<version>3.29.0-GA</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.spring.platform</groupId>
|
<artifactId>platform-bom</artifactId>
|
<version>Cairo-SR1</version>
|
<type>pom</type>
|
</dependency>
|
|
<!--<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-service-warn</artifactId>
|
<version>${service.version}</version>
|
</dependency>-->
|
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-service-core</artifactId>
|
<version>${service.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-service-io</artifactId>
|
<version>1.0.0</version>
|
<scope>compile</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-service-io</artifactId>
|
<version>${service.version}</version>
|
</dependency>
|
</dependencies>
|
|
|
<build>
|
<resources>
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.xml</include>
|
</includes>
|
<filtering>false</filtering>
|
</resource>
|
<resource>
|
<directory>src/main/resources/lib</directory>
|
<targetPath>BOOT-INF/lib/</targetPath>
|
<includes>
|
<include>**/*.jar</include>
|
</includes>
|
</resource>
|
</resources>
|
</build>
|
|
<repositories>
|
<repository>
|
<id>bsdn-repository</id>
|
<url>http://nexus.bsdn.org/content/groups/public/</url>
|
<releases>
|
<enabled>true</enabled>
|
</releases>
|
</repository>
|
</repositories>
|
|
</project>
|