annot8-baleen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-baleen</artifactId>
<version>0.2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.annot8</groupId>
<artifactId>annot8-parent</artifactId>
<version>0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>annot8-baleen</artifactId>
<properties>
<baleen.version>2.6.0</baleen.version>
<embedded-baleen.version>0.2</embedded-baleen.version>
</properties>
<dependencies>
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-core</artifactId>
</dependency>
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-common-data</artifactId>
</dependency>
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-conventions</artifactId>
</dependency>
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-components-base</artifactId>
</dependency>
<!-- Baleen -->
<dependency>
<groupId>uk.gov.dstl.baleen</groupId>
<artifactId>baleen-annotators</artifactId>
<version>${baleen.version}</version>
</dependency>
<dependency>
<groupId>io.committed.baleen</groupId>
<artifactId>embedded-baleen</artifactId>
<version>${embedded-baleen.version}</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-test-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.annot8</groupId>
<artifactId>annot8-components-files</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>travis</id>
<repositories>
<repository>
<id>packagecloud-annot8</id>
<url>https://packagecloud.io/committed/annot8/maven2</url>
<releases>
<!-- Don't look for releases, use Central -->
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</project>