165 lines
6.5 KiB
XML
165 lines
6.5 KiB
XML
|
|
<?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>pqs-job</artifactId>
|
|||
|
|
<groupId>com.njcn</groupId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
</parent>
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
<artifactId>job-admin</artifactId>
|
|||
|
|
<name>任务调度中心</name>
|
|||
|
|
<packaging>jar</packaging>
|
|||
|
|
|
|||
|
|
<properties>
|
|||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|||
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|||
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|||
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|||
|
|
|
|||
|
|
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
|
|||
|
|
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
|
|||
|
|
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
|||
|
|
<maven-war-plugin.version>3.3.1</maven-war-plugin.version>
|
|||
|
|
</properties>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
|
|||
|
|
<!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!-- starter-test:junit + spring-test + mockito -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|||
|
|
<scope>test</scope>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- freemarker-starter -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- mail-starter -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!--数据库相关********satrt-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|||
|
|
<exclusions>
|
|||
|
|
<!-- 排除默认的 HikariCP 数据源 -->
|
|||
|
|
<exclusion>
|
|||
|
|
<groupId>com.zaxxer</groupId>
|
|||
|
|
<artifactId>HikariCP</artifactId>
|
|||
|
|
</exclusion>
|
|||
|
|
</exclusions>
|
|||
|
|
</dependency>
|
|||
|
|
<!--druid连接池-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba</groupId>
|
|||
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--mysql驱动-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>mysql</groupId>
|
|||
|
|
<artifactId>mysql-connector-java</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.njcn</groupId>
|
|||
|
|
<artifactId>job-api</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
<build>
|
|||
|
|
<finalName>${project.artifactId}</finalName>
|
|||
|
|
<resources>
|
|||
|
|
<resource>
|
|||
|
|
<directory>src/main/resources</directory>
|
|||
|
|
<filtering>true</filtering>
|
|||
|
|
<excludes>
|
|||
|
|
<exclude>static/**/*.woff</exclude>
|
|||
|
|
<exclude>static/**/*.woff2</exclude>
|
|||
|
|
<exclude>static/**/*.ttf</exclude>
|
|||
|
|
</excludes>
|
|||
|
|
</resource>
|
|||
|
|
<resource>
|
|||
|
|
<directory>src/main/resources</directory>
|
|||
|
|
<filtering>false</filtering>
|
|||
|
|
<includes>
|
|||
|
|
<include>static/**/*.woff</include>
|
|||
|
|
<include>static/**/*.woff2</include>
|
|||
|
|
<include>static/**/*.ttf</include>
|
|||
|
|
</includes>
|
|||
|
|
</resource>
|
|||
|
|
</resources>
|
|||
|
|
<plugins>
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
|
<executions>
|
|||
|
|
<execution>
|
|||
|
|
<goals>
|
|||
|
|
<goal>repackage</goal>
|
|||
|
|
</goals>
|
|||
|
|
</execution>
|
|||
|
|
</executions>
|
|||
|
|
<configuration>
|
|||
|
|
<fork>true</fork>
|
|||
|
|
</configuration>
|
|||
|
|
</plugin>
|
|||
|
|
<!-- docker -->
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>com.spotify</groupId>
|
|||
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
<executions>
|
|||
|
|
<!--执行mvn package,即执行 mvn clean package docker:build-->
|
|||
|
|
<execution>
|
|||
|
|
<id>build-image</id>
|
|||
|
|
<phase>${docker.operate}</phase>
|
|||
|
|
<goals>
|
|||
|
|
<goal>build</goal>
|
|||
|
|
</goals>
|
|||
|
|
</execution>
|
|||
|
|
</executions>
|
|||
|
|
<configuration>
|
|||
|
|
<!--<serverId>36dockerHarbor</serverId>-->
|
|||
|
|
<registryUrl>http://${docker.repostory}</registryUrl>
|
|||
|
|
<!-- 镜像名称 -->
|
|||
|
|
<imageName>${docker.repostory}/${docker.registry.name}/${project.artifactId}</imageName>
|
|||
|
|
<!-- 指定标签 -->
|
|||
|
|
<imageTags>
|
|||
|
|
<imageTag>latest</imageTag>
|
|||
|
|
</imageTags>
|
|||
|
|
<!-- 指定远程 Docker API地址 -->
|
|||
|
|
<dockerHost>${docker.url}</dockerHost>
|
|||
|
|
<dockerDirectory>${basedir}/</dockerDirectory>
|
|||
|
|
<!-- 复制 jar包到docker容器指定目录-->
|
|||
|
|
<resources>
|
|||
|
|
<resource>
|
|||
|
|
<targetPath>/ROOT</targetPath>
|
|||
|
|
<!-- 用于指定需要复制的根目录,${project.build.directory}表示target目录 -->
|
|||
|
|
<directory>${project.build.directory}</directory>
|
|||
|
|
<!-- 用于指定需要复制的文件,${project.build.finalName}.jar就是打包后的target目录下的jar包名称 -->
|
|||
|
|
<include>${project.build.finalName}.jar</include>
|
|||
|
|
</resource>
|
|||
|
|
</resources>
|
|||
|
|
</configuration>
|
|||
|
|
</plugin>
|
|||
|
|
</plugins>
|
|||
|
|
</build>
|
|||
|
|
</project>
|