<?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">
|
<parent>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-parent</artifactId>
|
<version>2024.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>plt-web</artifactId>
|
|
<dependencies>
|
<!--平台的包-->
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-base</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>*</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-permission</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>eu.bitwalker</groupId>
|
<artifactId>UserAgentUtils</artifactId>
|
<version>1.20</version>
|
</dependency>
|
|
<!--开启 cache 缓存 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
|
<!-- ehcache缓存 -->
|
<dependency>
|
<groupId>net.sf.ehcache</groupId>
|
<artifactId>ehcache</artifactId>
|
<version>2.9.1</version><!--$NO-MVN-MAN-VER$ -->
|
</dependency>
|
|
<dependency><!--java bean 和xml转换-->
|
<groupId>com.thoughtworks.xstream</groupId>
|
<artifactId>xstream</artifactId>
|
<version>1.4.10</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>plt-web</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
<version>2.8</version>
|
<executions>
|
<execution>
|
<id>copy</id>
|
<phase>package</phase>
|
<goals>
|
<goal>copy-dependencies</goal>
|
</goals>
|
<configuration>
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-jar-plugin</artifactId>
|
<version>3.0.2</version>
|
<configuration>
|
<archive>
|
<manifest>
|
<addClasspath>true</addClasspath>
|
<classpathPrefix>lib/</classpathPrefix>
|
</manifest>
|
</archive>
|
<excludes>
|
<exclude>properties/conf.properties</exclude>
|
<exclude>properties/eventConf.properties</exclude>
|
<exclude>lib/*</exclude>
|
</excludes>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|