bodmo | d8e7e6c | 2021-11-10 11:07:38 +0100 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>de.korap.services</groupId> |
| 4 | <artifactId>utils</artifactId> |
| 5 | <version>0.1-SNAPSHOT</version> |
| 6 | <packaging>jar</packaging> |
| 7 | <name>utils</name> |
| 8 | <description>Utilitys for the KorAp Services.</description> |
| 9 | <build> |
| 10 | <sourceDirectory>src</sourceDirectory> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <artifactId>maven-compiler-plugin</artifactId> |
| 14 | <version>3.7.0</version> |
| 15 | <configuration> |
| 16 | <source>1.8</source> |
| 17 | <target>1.8</target> |
| 18 | </configuration> |
| 19 | </plugin> |
| 20 | </plugins> |
| 21 | </build> |
| 22 | |
| 23 | <dependencies> |
| 24 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| 25 | <dependency> |
| 26 | <groupId>commons-io</groupId> |
| 27 | <artifactId>commons-io</artifactId> |
| 28 | <version>2.6</version> |
| 29 | </dependency> |
| 30 | </dependencies> |
| 31 | </project> |