mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2024-11-15 20:47:27 +08:00
147 lines
4 KiB
XML
147 lines
4 KiB
XML
<?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>
|
|
<artifactId>skyeye-promote</artifactId>
|
|
<groupId>com.skyeye</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>skyeye-web</artifactId>
|
|
|
|
<name>skyeye-web</name>
|
|
<url>http://www.example.com</url>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 引入API模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-api</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 引入组织模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-organization</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 引入门户模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-gateway</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 引入3D模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-threed</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 引入手机端用户模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-user-phone</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- 引入开发文档和代码生成器模块的依赖 -->
|
|
<dependency>
|
|
<groupId>com.skyeye</groupId>
|
|
<artifactId>skyeye-code-doc</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
</dependency>
|
|
|
|
<!-- actuator监控 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!-- admin监听包 -->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
<version>2.0.3</version>
|
|
</dependency>
|
|
<!-- Spring Boot Actuator对外暴露引用的监控信息, Jolokia提供使用HTTP接口获取json -->
|
|
<dependency>
|
|
<groupId>org.jolokia</groupId>
|
|
<artifactId>jolokia-core</artifactId>
|
|
</dependency>
|
|
<!-- 服务包 -->
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- 资源文件拷贝插件 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!--spring-boot打包 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<fork>true</fork>
|
|
<webResources>
|
|
<resource>
|
|
<directory>${basedir}/lib</directory>
|
|
<targetPath>WEB-INF/lib</targetPath>
|
|
<filtering>false</filtering>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</resource>
|
|
</webResources>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>springloaded</artifactId>
|
|
<version>1.2.5.RELEASE</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
|
|
<!--打包跳过测试 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- java编译插件 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|