1
0
mirror of https://github.com/kennycason/kumo synced 2025-04-01 09:38:48 -04:00
kumo/kumo-core/pom.xml

76 lines
2.4 KiB
XML
Raw Normal View History

<?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>
<groupId>com.kennycason</groupId>
2017-12-01 00:14:24 -05:00
<artifactId>kumo</artifactId>
<version>1.29-SNAPSHOT</version>
</parent>
2017-12-01 00:14:24 -05:00
<modelVersion>4.0.0</modelVersion>
<artifactId>kumo-core</artifactId>
<properties>
<automatic.module.name>${project.groupId}.kumo.core</automatic.module.name>
</properties>
<dependencies>
2017-12-01 00:14:24 -05:00
<!-- kumo -->
<dependency>
<groupId>com.kennycason</groupId>
<artifactId>kumo-api</artifactId>
</dependency>
2017-06-02 04:15:07 -04:00
2017-12-01 00:14:24 -05:00
<!--logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2017-12-01 00:14:24 -05:00
</dependency>
<!-- misc -->
2017-06-02 04:15:07 -04:00
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>rtree</artifactId>
</dependency>
2017-06-02 04:15:07 -04:00
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
2017-06-02 16:52:47 -04:00
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>