2017-09-14 17:23:46 +08:00
|
|
|
<?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>
|
2017-09-14 17:55:02 +08:00
|
|
|
<parent>
|
2018-08-28 19:39:04 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>1.4.7.RELEASE</version>
|
2017-09-14 17:55:02 +08:00
|
|
|
</parent>
|
2019-02-19 11:24:52 +08:00
|
|
|
<groupId>cn.keepbx</groupId>
|
2019-01-04 15:24:53 +08:00
|
|
|
<artifactId>jpom</artifactId>
|
2019-02-26 11:43:48 +08:00
|
|
|
<name>Jpom Java项目在线管理</name>
|
2019-01-03 12:04:33 +08:00
|
|
|
<inceptionYear>2017</inceptionYear>
|
2019-04-01 09:48:55 +08:00
|
|
|
<version>2.1</version>
|
2017-09-14 17:55:02 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
2019-02-19 16:01:58 +08:00
|
|
|
<common-boot.version>[1.2.0,1.2.99]</common-boot.version>
|
2017-09-14 17:55:02 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2018-01-20 15:10:04 +08:00
|
|
|
<dependency>
|
2018-06-25 22:23:59 +08:00
|
|
|
<groupId>cn.jiangzeyin.fast-boot</groupId>
|
2018-01-20 15:10:04 +08:00
|
|
|
<artifactId>common-boot</artifactId>
|
2018-09-28 10:02:23 +08:00
|
|
|
<version>${common-boot.version}</version>
|
2018-01-20 15:10:04 +08:00
|
|
|
</dependency>
|
2017-09-14 17:55:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-velocity</artifactId>
|
|
|
|
</dependency>
|
2017-09-15 16:09:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2018-09-28 22:31:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
<version>2.8.3</version>
|
|
|
|
</dependency>
|
2019-03-07 10:00:59 +08:00
|
|
|
<!--nginx-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.odiszapc</groupId>
|
|
|
|
<artifactId>nginxparser</artifactId>
|
|
|
|
<version>0.9.6</version>
|
|
|
|
</dependency>
|
2019-03-15 15:04:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun</groupId>
|
|
|
|
<artifactId>tools</artifactId>
|
|
|
|
<version>${java.version}</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
|
|
|
</dependency>
|
2019-03-27 13:49:08 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<version>1.61</version>
|
|
|
|
</dependency>
|
2017-09-14 17:55:02 +08:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-03-05 18:36:32 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cn.keepbx.jpom.JpomApplication</mainClass>
|
|
|
|
<!-- 是否指定项目classpath下的依赖 -->
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<!-- 指定依赖的时候声明前缀 -->
|
|
|
|
<classpathPrefix>./</classpathPrefix>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-09-14 17:55:02 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-07-05 16:10:36 +08:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2017-09-14 17:55:02 +08:00
|
|
|
<configuration>
|
2018-07-05 16:10:36 +08:00
|
|
|
<descriptors>
|
2018-12-29 16:17:35 +08:00
|
|
|
<descriptor>script/release.xml</descriptor>
|
2018-07-05 16:10:36 +08:00
|
|
|
</descriptors>
|
|
|
|
<outputDirectory>target/</outputDirectory>
|
2017-09-14 17:55:02 +08:00
|
|
|
</configuration>
|
2018-07-05 16:10:36 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2019-03-27 16:52:54 +08:00
|
|
|
<version>3.1.0</version>
|
2017-09-14 17:55:02 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-09-14 17:23:46 +08:00
|
|
|
</project>
|