Jpom/pom.xml

159 lines
5.7 KiB
XML
Raw Normal View History

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>
2019-04-16 10:50:45 +08:00
<packaging>pom</packaging>
<modules>
<module>modules/agent</module>
<module>modules/server</module>
<module>modules/common</module>
</modules>
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>
2019-07-31 22:42:01 +08:00
<version>2.1.6.RELEASE</version>
2017-09-14 17:55:02 +08:00
</parent>
2019-08-13 15:53:56 +08:00
<groupId>cn.keepbx.Jpom</groupId>
2019-07-23 16:58:43 +08:00
<artifactId>Jpom</artifactId>
2019-02-26 11:43:48 +08:00
<name>Jpom Java项目在线管理</name>
2019-07-25 14:43:19 +08:00
<description>
一款简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件
</description>
2019-01-03 12:04:33 +08:00
<inceptionYear>2017</inceptionYear>
2019-08-04 16:24:25 +08:00
<version>2.4.3</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-07-31 22:42:01 +08:00
<common-boot.version>[2.0.0,2.0.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>
2019-04-18 16:32:07 +08:00
<!-- aop-->
2017-09-15 16:09:07 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
2019-04-18 16:32:07 +08:00
2019-04-16 10:50:45 +08:00
<!-- tools-->
2019-03-15 15:04:38 +08:00
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${java.version}</version>
<scope>system</scope>
<systemPath>${toolsJar}</systemPath>
2019-03-15 15:04:38 +08:00
</dependency>
2019-04-17 12:11:01 +08:00
2019-04-19 10:10:55 +08:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2017-09-14 17:55:02 +08:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
2019-04-16 10:50:45 +08:00
2018-07-05 16:10:36 +08:00
<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>
2019-08-13 17:36:38 +08:00
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<tags>
<tag>
<name>date</name>
<placement>a</placement>
<head>创建时间</head>
</tag>
</tags>
</configuration>
2017-09-14 17:55:02 +08:00
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>default-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
<file>
2019-08-09 16:47:37 +08:00
<exists>${env.JAVA_HOME}/lib/tools.jar</exists>
</file>
</activation>
<properties>
2019-08-09 16:47:37 +08:00
<toolsJar>${env.JAVA_HOME}/lib/tools.jar</toolsJar>
</properties>
</profile>
<profile>
<id>mac-profile</id>
<activation>
<activeByDefault>false</activeByDefault>
<file>
2019-08-10 01:15:26 +08:00
<exists>${java.home}/../lib/tools.jar</exists>
</file>
</activation>
<properties>
2019-08-10 01:15:26 +08:00
<toolsJar>${java.home}/../lib/tools.jar</toolsJar>
</properties>
</profile>
2019-08-13 17:36:38 +08:00
<profile>
<id>install-plugin-profile</id>
<distributionManagement>
<snapshotRepository>
<id>maven-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>maven-repo</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>verify-gpg</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2019-07-23 16:58:43 +08:00
</project>