27 lines
833 B
XML
27 lines
833 B
XML
<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>de.tilman</groupId>
|
|
<artifactId>cardcreator</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>1.7.18</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext7-core</artifactId>
|
|
<version>7.1.4</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>se.michaelthelin.spotify</groupId>
|
|
<artifactId>spotify-web-api-java</artifactId>
|
|
<version>2.1.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |