eden-api was causing issues so I'm moving Parchment's common interfaces and utilities here
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<artifactId>parchment-parent</artifactId>
|
|
<groupId>me.lexikiq</groupId>
|
|
<version>dev-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>parchment-common</artifactId>
|
|
<version>dev-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Parchment-Common</name>
|
|
<url>https://github.com/lexikiq/Parchment</url>
|
|
<description>Common utility files and interfaces for Parchment</description>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations-java5</artifactId>
|
|
<version>20.1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |