core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.higgs</groupId>
<artifactId>core</artifactId>
<version>0.0.24</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core</artifactId>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>Core API and interfaces for Higgs</description>
<!-- Inherit most settings from parent project -->
<parent>
<groupId>io.higgs</groupId>
<artifactId>higgs</artifactId>
<relativePath>../pom.xml</relativePath>
<version>0.0.24</version>
</parent>
<dependencies>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
</dependency>
<!--yaml support - used to load config-->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.11</version>
</dependency>
</dependencies>
</project>