Jpom/pom.xml

90 lines
3.2 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>
2017-09-14 17:23:46 +08:00
<artifactId>boot-online</artifactId>
<version>1.0</version>
2017-09-14 17:55:02 +08:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
2018-08-13 20:04:34 +08:00
2018-10-25 11:30:22 +08:00
<common-boot.version>1.2.9</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>
<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>
<descriptor>src/main/resources/release.xml</descriptor>
</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>