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>
|
2019-08-13 17:48:32 +08:00
|
|
|
<artifactId>jpom-parent</artifactId>
|
|
|
|
<groupId>cn.keepbx.jpom</groupId>
|
2019-08-04 16:24:25 +08:00
|
|
|
<version>2.4.3</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>
|
2019-05-15 21:52:29 +08:00
|
|
|
<name>Jpom 服务端</name>
|
2019-04-16 10:50:45 +08:00
|
|
|
<artifactId>server</artifactId>
|
2019-08-04 16:24:25 +08:00
|
|
|
<version>2.4.3</version>
|
2019-07-21 02:43:13 +08:00
|
|
|
<properties>
|
|
|
|
<start-class>cn.keepbx.jpom.JpomServerApplication</start-class>
|
|
|
|
</properties>
|
2019-04-16 10:50:45 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2019-07-31 22:42:01 +08:00
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
2019-04-16 10:50:45 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-08-13 17:48:32 +08:00
|
|
|
<groupId>cn.keepbx.jpom</groupId>
|
2019-04-16 10:50:45 +08:00
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<version>${pom.version}</version>
|
|
|
|
</dependency>
|
2019-04-16 18:46:30 +08:00
|
|
|
|
|
|
|
<!--websocket作为客户端-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.java-websocket</groupId>
|
|
|
|
<artifactId>Java-WebSocket</artifactId>
|
|
|
|
<version>1.4.0</version>
|
|
|
|
</dependency>
|
2019-04-19 16:59:27 +08:00
|
|
|
|
|
|
|
<!-- 数据库-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.4.199</version>
|
|
|
|
</dependency>
|
2019-07-09 19:20:01 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
|
|
<version>5.4.0.201906121030-r</version>
|
|
|
|
</dependency>
|
2019-08-04 20:27:26 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.tmatesoft.svnkit</groupId>
|
|
|
|
<artifactId>svnkit</artifactId>
|
|
|
|
<version>1.10.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-07-25 10:20:26 +08:00
|
|
|
<!--邮件-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
|
<version>1.5.6</version>
|
|
|
|
</dependency>
|
2019-04-16 10:50:45 +08:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2019-07-21 02:43:13 +08:00
|
|
|
<mainClass>${start-class}</mainClass>
|
2019-04-16 10:50:45 +08:00
|
|
|
<!-- 是否指定项目classpath下的依赖 -->
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<!-- 指定依赖的时候声明前缀 -->
|
|
|
|
<classpathPrefix>./</classpathPrefix>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<!-- 项目版本号 -->
|
|
|
|
<Jpom-Project-Version>${project.version}</Jpom-Project-Version>
|
|
|
|
<!-- 打包时间 -->
|
|
|
|
<Jpom-Timestamp>${maven.build.timestamp}</Jpom-Timestamp>
|
2019-07-23 16:58:43 +08:00
|
|
|
<Jpom-Type>${project.artifactId}</Jpom-Type>
|
2019-04-16 10:50:45 +08:00
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-08-13 15:53:56 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>server-default-profile</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<fork>true</fork>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</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>
|
|
|
|
</profile>
|
2019-08-13 17:36:38 +08:00
|
|
|
<!-- 安装插件引人-->
|
2019-08-13 15:53:56 +08:00
|
|
|
<profile>
|
2019-08-13 17:36:38 +08:00
|
|
|
<id>install-plugin-profile</id>
|
2019-08-13 15:53:56 +08:00
|
|
|
</profile>
|
2019-08-13 16:41:15 +08:00
|
|
|
|
|
|
|
<!-- 插件开发-->
|
|
|
|
<profile>
|
|
|
|
<id>develop-plugin-profile</id>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-08-19 09:56:05 +08:00
|
|
|
<groupId>cn.keepbx.jpom-plugin</groupId>
|
2019-08-13 16:41:15 +08:00
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2019-08-13 15:53:56 +08:00
|
|
|
</profiles>
|
2019-07-09 19:20:01 +08:00
|
|
|
</project>
|