From c203960985620bdbe0b513e580dcd126466fb4c5 Mon Sep 17 00:00:00 2001 From: Jonathan Halterman Date: Tue, 18 Feb 2014 11:59:59 -0800 Subject: [PATCH] Initial commit --- .gitignore | 14 +++ pom.xml | 265 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 279 insertions(+) create mode 100755 .gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100755 index 000000000..290c64c07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.swp +*.iml +.DS_Store +.cache +.classpath +.idea +.project +.target/ +.settings/ +target/ +test-output/ +logs/ +*config*.yml +db/config.yml \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..ef3ed6c4d --- /dev/null +++ b/pom.xml @@ -0,0 +1,265 @@ + + 4.0.0 + + com.hpcloud + mon-api + ${computedVersion} + http://hpcloud.net + jar + + + 3.0 + + + + 1.0.0 + ${versionNumber}-SNAPSHOT + 1.0.0-SNAPSHOT + 0.6.2 + + true + UTF-8 + UTF-8 + + + + scm:git:git@git.hpcloud.net:mon/mon-api.git + scm:git:git@git.hpcloud.net:mon/mon-api.git + + + + + nexus releases + http://nexus.paas.hpcloud.net:8081/nexus/content/repositories/releases + + + nexus 3rd party + http://nexus.paas.hpcloud.net:8081/nexus/content/repositories/thirdparty + + + nexus-snapshots + nexus snapshots + http://nexus.paas.hpcloud.net:8081/nexus/content/repositories/snapshots + + + + + + release-deploy-url-override + + + BUILD_NUM + + + + ${versionNumber}.${BUILD_NUM} + + + + + + + com.hpcloud + mon-model + ${mon.common.version} + + + com.hpcloud + mon-persistence + ${mon.common.version} + + + com.hpcloud + mon-util + ${mon.common.version} + + + com.yammer.dropwizard + dropwizard-core + ${dropwizard.version} + + + com.yammer.dropwizard + dropwizard-db + ${dropwizard.version} + + + com.yammer.dropwizard + dropwizard-jdbi + ${dropwizard.version} + + + com.yammer.dropwizard + dropwizard-client + ${dropwizard.version} + + + com.yammer.metrics + metrics-guice + 2.1.3 + + + mysql + mysql-connector-java + 5.1.18 + + + com.google.code.findbugs + jsr305 + 2.0.0 + + + commons-lang + commons-lang + 2.3 + + + com.sun.jersey + jersey-client + 1.15 + + + com.sun.jersey.contribs + jersey-apache-client4 + 1.15 + + + com.hp.csbu.cc + CsMiddleware + 3.34.0 + + + org.apache.curator + curator-recipes + 2.2.0-incubating + + + org.slf4j + slf4j-log4j12 + + + + + org.eclipse.jetty + jetty-servlets + 8.1.8.v20121106 + + + + + com.hpcloud + mon-testing + ${mon.common.version} + test + + + com.hpcloud + mon-dropwizard + ${mon.common.version} + test-jar + test + + + com.yammer.dropwizard + dropwizard-testing + ${dropwizard.version} + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + org.apache.maven.plugins + maven-surefire-plugin + + performance,functional,integration,database,slow + + + + org.apache.maven.plugins + maven-failsafe-plugin + + performance,functional,integration,database,slow + ${skipITs} + + + + + integration-test + + + + **/*.class + + + + + + + org.apache.maven.plugins + maven-shade-plugin + + mon-api + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + package + + shade + + + + + + com.hpcloud.mon.MonApiService + + + true + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-scm-plugin + + ${project.version} + + + + + +