30 lines
802 B
XML

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>de.licenseapi</groupId>
<artifactId>LicenseAPI-Integration</artifactId>
<version>1.0.0-ALPHA</version>
<dependencies>
<!-- JSON library -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>