Jpom/modules/server/pom.xml

203 lines
5.3 KiB
XML
Raw Normal View History

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-parent</artifactId>
<groupId>io.jpom</groupId>
2022-01-24 14:16:34 +08:00
<version>2.8.7</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>Jpom 服务端</name>
2021-09-15 12:09:04 +08:00
<artifactId>server</artifactId>
2022-01-24 14:16:34 +08:00
<version>2.8.7</version>
<properties>
<start-class>io.jpom.JpomServerApplication</start-class>
</properties>
<dependencies>
2021-07-08 23:44:12 +08:00
<dependency>
<groupId>io.jpom</groupId>
<artifactId>common</artifactId>
<version>${pom.version}</version>
</dependency>
2019-04-16 18:46:30 +08:00
2021-12-22 13:38:54 +08:00
<dependency>
2021-12-23 16:33:16 +08:00
<groupId>io.jpom.plugins</groupId>
2021-12-22 13:38:54 +08:00
<artifactId>webhook</artifactId>
<version>${pom.version}</version>
</dependency>
2021-12-24 13:27:19 +08:00
<dependency>
<groupId>io.jpom.plugins</groupId>
<artifactId>auto-charset-jchardet</artifactId>
<version>${pom.version}</version>
</dependency>
<!--websocket作为客户端-->
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.2</version>
</dependency>
2019-04-19 16:59:27 +08:00
<!-- 数据库-->
<dependency>
2022-01-17 22:37:45 +08:00
<groupId>io.jpom.plugins</groupId>
<artifactId>db-h2</artifactId>
<version>${pom.version}</version>
</dependency>
2019-07-09 19:20:01 +08:00
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
2022-01-20 17:10:03 +08:00
<version>5.13.0.202109080827-r</version>
</dependency>
2021-07-21 23:26:55 +08:00
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.55</version>
</dependency>
2019-08-04 20:27:26 +08:00
<dependency>
2021-12-23 16:33:16 +08:00
<groupId>io.jpom.plugins</groupId>
2021-12-23 13:31:47 +08:00
<artifactId>svn-clone</artifactId>
<version>${pom.version}</version>
</dependency>
2019-08-04 20:27:26 +08:00
<!--邮件-->
<dependency>
2021-12-23 16:33:16 +08:00
<groupId>io.jpom.plugins</groupId>
2021-12-22 16:32:57 +08:00
<artifactId>email</artifactId>
<version>${pom.version}</version>
</dependency>
2020-10-31 18:32:30 +08:00
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>
<!--Spring Junit Test-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</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>${start-class}</mainClass>
<!-- 是否指定项目classpath下的依赖 -->
<addClasspath>true</addClasspath>
<!-- 指定依赖的时候声明前缀 -->
<classpathPrefix>./</classpathPrefix>
</manifest>
<manifestEntries>
<!-- 项目版本号 -->
<Jpom-Project-Version>${project.version}</Jpom-Project-Version>
<!-- 打包时间 -->
<Jpom-Timestamp>${maven.build.timestamp}</Jpom-Timestamp>
<Jpom-Type>${project.artifactId}</Jpom-Type>
<Implementation-URL>https://gitee.com/dromara/Jpom</Implementation-URL>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
<resources>
<!--版权文件,更新日志-->
<resource>
<filtering>false</filtering>
<directory>../../</directory>
<includes>
<include>CHANGELOG.md</include>
<include>LICENSE</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
</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>
2021-12-23 16:33:16 +08:00
<!-- <excludeGroupIds>io.jpom.plugins</excludeGroupIds>-->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
2021-12-14 10:10:20 +08:00
<version>3.3.0</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>
<!-- 安装插件引人-->
<profile>
<id>install-plugin-profile</id>
</profile>
<profile>
<id>release-plugin-profile</id>
</profile>
2019-08-13 16:41:15 +08:00
<!-- 插件开发-->
<profile>
<id>develop-plugin-profile</id>
<dependencies>
<dependency>
<groupId>io.jpom.jpom-plugin</groupId>
<artifactId>netty</artifactId>
<version>LATEST</version>
</dependency>
</dependencies>
</profile>
</profiles>
2019-07-09 19:20:01 +08:00
</project>