mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-11 02:31:46 +00:00
30 lines
788 B
XML
30 lines
788 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>de.licenseapi</groupId>
|
|
<artifactId>licenseapi</artifactId>
|
|
<version>1.0.0-PRE</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> |