Jpom/pom.xml

108 lines
4.1 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>
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-02-21 14:44:56 +08:00
<version>1.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>
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>
<!-- 去掉java doc-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>none</phase>
</execution>
</executions>
2017-09-14 17:55:02 +08:00
</plugin>
</plugins>
</build>
2018-06-25 22:55:37 +08:00
<developers>
<developer>
<name>F7575</name>
<email>1757518819@qq.com</email>
<organization>F7575</organization>
</developer>
<developer>
<name>jiangzeyin</name>
<email>bwcx_jzy@163.com</email>
<organization>bwcx_jzy</organization>
</developer>
</developers>
2017-09-14 17:23:46 +08:00
</project>