From cd51f94994f1d6372c588515e37f2582d9f19771 Mon Sep 17 00:00:00 2001 From: Jonathan Halterman Date: Fri, 8 Mar 2013 15:51:20 -0800 Subject: [PATCH] initial commit --- .gitignore | 14 +++ pom.xml | 247 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 261 insertions(+) create mode 100755 .gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..fdf1c3c --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.swp +*.iml +.cache +.classpath +.idea +.project +.target/ +.settings/ +target/ +test-output/ +logs/ +dev-config.yml +prod-config.yml +test-config.yml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..25d22b2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,247 @@ + + 4.0.0 + + com.hpcloud + maas-thresh + ${computedVersion} + http://hpcloud.net + jar + + + 3.0 + + + + + 1.0.0 + ${versionNumber}-SNAPSHOT + 1.0.0.212 + 0.6.1 + true + + + UTF-8 + UTF-8 + + + + scm:git:git@git.paas.hpcloud.net:maas-thresh + scm:git:git@git.paas.hpcloud.net:maas-thresh + + + + + 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 + + + + + + nexus + Internal Releases + http://nexus.paas.hpcloud.net:8081/nexus/content/repositories/releases + + + nexus + Snapshots + false + http://nexus.paas.hpcloud.net:8081/nexus/content/repositories/snapshots + + + + + + release-deploy-url-override + + + BUILD_NUM + + + + ${versionNumber}.${BUILD_NUM} + + + + + + + com.yammer.dropwizard + dropwizard-core + ${dropwizard.version} + + + com.yammer.dropwizard + dropwizard-db + ${dropwizard.version} + + + com.yammer.dropwizard + dropwizard-jdbi + ${dropwizard.version} + + + com.hpcloud + ps-util + ${ps.common.version} + + + com.hpcloud + ps-persistence + ${ps.common.version} + + + com.hpcloud + ps-messaging + ${ps.common.version} + + + com.yammer.metrics + metrics-guice + 2.1.3 + + + com.google.inject.extensions + guice-assistedinject + 3.0 + + + com.rabbitmq + amqp-client + 2.7.1 + + + mysql + mysql-connector-java + 5.1.18 + + + + + com.hpcloud + ps-testing + ${ps.common.version} + test + + + com.yammer.dropwizard + dropwizard-testing + ${dropwizard.version} + test + + + com.hpcloud + ps-messaging + ${ps.common.version} + test-jar + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + 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 + + maas-thresh + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + package + + shade + + + + + + com.hpcloud.maas.ThresholdingService + + + true + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-scm-plugin + + ${project.version} + + + + + +