discovery-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nesscomputing.service.discovery</groupId>
<artifactId>discovery-server</artifactId>
<version>1.6.3</version>
</dependency><?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.nesscomputing.service.discovery</groupId>
<artifactId>discovery-parent</artifactId>
<version>1.6.3</version>
</parent>
<artifactId>discovery-server</artifactId>
<name>service-discovery-server</name>
<packaging>jar</packaging>
<properties>
<galaxy.packaging>standalone</galaxy.packaging>
<galaxy.mainclass>com.nesscomputing.service.discovery.server.DiscoveryServerMain</galaxy.mainclass>
<galaxy.jvm>1.7.0</galaxy.jvm>
<ness.root.dir>${project.parent.basedir}</ness.root.dir>
</properties>
<dependencies>
<dependency>
<groupId>com.nesscomputing.service.discovery</groupId>
<artifactId>discovery-client</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-logging</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-lifecycle</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-server</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-server-templates</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-httpclient</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-config</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-quartz</artifactId>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</dependency>
<dependency>
<groupId>org.skife.config</groupId>
<artifactId>config-magic</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</dependency>
<dependency>
<groupId>com.nesscomputing.components</groupId>
<artifactId>ness-jackson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</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.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>