2019-04-16 10:50:45 +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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>jpom</artifactId>
|
|
|
|
<groupId>cn.keepbx</groupId>
|
|
|
|
<version>2.3.2</version>
|
2019-04-16 11:16:10 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2019-04-16 10:50:45 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>cn.keepbx.jpom</groupId>
|
|
|
|
<artifactId>server</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-velocity</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.keepbx.jpom</groupId>
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<version>${pom.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cn.keepbx.jpom.JpomServerApplication</mainClass>
|
|
|
|
<!-- 是否指定项目classpath下的依赖 -->
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<!-- 指定依赖的时候声明前缀 -->
|
|
|
|
<classpathPrefix>./</classpathPrefix>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<!-- 项目版本号 -->
|
|
|
|
<Jpom-Project-Version>${project.version}</Jpom-Project-Version>
|
|
|
|
<!-- 打包时间 -->
|
|
|
|
<Jpom-Timestamp>${maven.build.timestamp}</Jpom-Timestamp>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>script/release.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<outputDirectory>target</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|