You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
6.8 KiB
197 lines
6.8 KiB
<?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>
|
|
<groupId>com.hly.cloud</groupId>
|
|
<artifactId>hly-service</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hly-service-all</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>3.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hly.cloud.common</groupId>
|
|
<artifactId>common-mybatis-config</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>2.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
<version>4.4.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.2</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<extensions>
|
|
<extension>
|
|
<groupId>kr.motd.maven</groupId>
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
<version>1.4.1.Final</version>
|
|
</extension>
|
|
</extensions>
|
|
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<!--不包含依赖的包-->
|
|
<configuration>
|
|
<layout>ZIP</layout>
|
|
|
|
<includes>
|
|
<include>
|
|
<groupId>non-exists</groupId>
|
|
<artifactId>non-exists</artifactId>
|
|
</include>
|
|
</includes>
|
|
|
|
<!--使用外部配置文件,jar包里没有资源文件-->
|
|
<addResources>true</addResources>
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!--打包工具-->
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>src/main/assembly/assembly.xml</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!--打包工具-->
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<executions>
|
|
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/conf</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources/${profiles.active}</directory>
|
|
<includes>
|
|
<include>**/*.sh</include>
|
|
<include>**/*.bat</include>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.yml</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
|
|
<resource>
|
|
<directory>src/main/resources/pub</directory>
|
|
<includes>
|
|
<include>**/*.sh</include>
|
|
<include>**/*.bat</include>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.yml</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
|
|
</resources>
|
|
</configuration>
|
|
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
<directory>src/main/resources/${profiles.active}</directory>
|
|
<includes>
|
|
<include>**/*.sh</include>
|
|
<include>**/*.bat</include>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
<!---->
|
|
<repositories>
|
|
<repository>
|
|
<id>sonatype-nexus-staging</id>
|
|
<name>Sonatype Nexus Staging</name>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |