<?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>screen</artifactId>
|
<groupId>org.moral</groupId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>screen-job</artifactId>
|
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.moral</groupId>
|
<artifactId>screen-common</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>3.1.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-mail</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-email</artifactId>
|
<version>1.5</version>
|
</dependency>
|
|
<dependency>
|
<groupId>javax.mail</groupId>
|
<artifactId>mail</artifactId>
|
<version>1.4.7</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.13</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>screen-job</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>${java.version}</source>
|
<target>${java.version}</target>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-resources-plugin</artifactId>
|
<version>${maven-resources-plugin.version}</version>
|
<dependencies>
|
<dependency>
|
<groupId>org.apache.maven.shared</groupId>
|
<artifactId>maven-filtering</artifactId>
|
<version>${maven-filtering.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.maven.shared</groupId>
|
<artifactId>maven-common-artifact-filters</artifactId>
|
<version>${maven-common-artifact-filters.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.maven.shared</groupId>
|
<artifactId>maven-dependency-tree</artifactId>
|
<version>${maven-dependency-tree.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.maven.shared</groupId>
|
<artifactId>maven-shared-incremental</artifactId>
|
<version>${maven-shared-incremental.version}</version>
|
</dependency>
|
</dependencies>
|
</plugin>
|
|
</plugins>
|
</build>
|
|
|
</project>
|