<?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>
|
<groupId>com.megatim</groupId>
|
<artifactId>generatetxt</artifactId>
|
<version>1.0</version>
|
<packaging>jar</packaging>
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<exec.mainClass>com.megatim.generatetxt.App</exec.mainClass>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>com.megatim</groupId>
|
<artifactId>validator-parser</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tika</groupId>
|
<artifactId>tika-parser-text-module</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.20</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>javax.validation</groupId>
|
<artifactId>validation-api</artifactId>
|
<version>2.0.0.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>org.hibernate.validator</groupId>
|
<artifactId>hibernate-validator</artifactId>
|
<version>6.0.13.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-core</artifactId>
|
<version>5.3.0.Final</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.megatimfx.common</groupId>
|
<artifactId>megatimfx-common</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.dhatim</groupId>
|
<artifactId>fastexcel-reader</artifactId>
|
<version>0.15.7</version>
|
</dependency>
|
<dependency>
|
<groupId>com.megatim.typefichier.validator</groupId>
|
<artifactId>typefichier-validator</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.11.0</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
|
<plugin>
|
<artifactId>maven-assembly-plugin</artifactId>
|
<configuration>
|
<archive>
|
<manifest>
|
<mainClass>com.megatim.generatetxt.App</mainClass>
|
</manifest>
|
</archive>
|
<descriptorRefs>
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
</descriptorRefs>
|
</configuration>
|
<executions>
|
<execution>
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
<goals>
|
<goal>single</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
|
</plugins>
|
</build>
|
</project>
|