Show
hide
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hubspot</groupId>
<artifactId>Singularity</artifactId>
<version>0.4.3</version>
</parent>
<artifactId>SingularityOOMKiller</artifactId>
<properties>
<basepom.shaded.main-class>com.hubspot.singularity.oomkiller.SingularityOOMKillerRunner</basepom.shaded.main-class>
</properties>
<dependencies>
<dependency>
<groupId>com.hubspot</groupId>
<artifactId>SingularityBase</artifactId>
</dependency>
<dependency>
<groupId>com.hubspot</groupId>
<artifactId>SingularityRunnerBase</artifactId>
</dependency>
<dependency>
<groupId>com.hubspot</groupId>
<artifactId>SingularityMesosClient</artifactId>
</dependency>
<dependency>
<groupId>com.hubspot</groupId>
<artifactId>SingularityClient</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.codahale.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
</project>
<!-- Local Variables: -->
<!-- mode: nxml -->
<!-- nxml-child-indent: 2 -->
<!-- End: -->
|