40 lines
1.1 KiB
XML
40 lines
1.1 KiB
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>me.mrletsplay</groupId>
|
|
<artifactId>VideoBaseV2</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
<configuration>
|
|
<release>11</release>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>Graphite-Official</id>
|
|
<url>https://maven.graphite-official.com/releases</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>me.mrletsplay</groupId>
|
|
<artifactId>MrCore</artifactId>
|
|
<version>4.6.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.mrletsplay</groupId>
|
|
<artifactId>SimpleHTTPServer</artifactId>
|
|
<version>2.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |