summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authortangpeng <tang.peng5@zte.com.cn>2017-02-28 09:35:00 +0800
committertangpeng <tang.peng5@zte.com.cn>2017-02-28 10:19:38 +0800
commit3d84a2ac489366bb877211d29c3bf531c2d8a089 (patch)
treea150337d769b4eef39f3966757240322cb9a1a2f /pom.xml
parente87f8243439fb68d1308a5132ae624942d77776d (diff)
Add Rule Management Standalone
Change-Id: I469fa41ea70f4f7b7740716287e46201f5faa484 Issue-ID:HOLMES-47 Signed-off-by: tangpeng <tang.peng5@zte.com.cn>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml28
1 files changed, 27 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index f2e9540..aadc429 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,6 +30,7 @@
<name>holmes-rulemgt-parent</name>
<modules>
<module>rulemgt</module>
+ <module>rulemgt-standalone</module>
</modules>
<properties>
@@ -55,16 +56,34 @@
<jaxrs.consumer.version>5.0</jaxrs.consumer.version>
<slf4j.version>1.6.1</slf4j.version>
<quartz.version>2.2.1</quartz.version>
+
+
+ <packagename>openo-holmes-rulemgt</packagename>
+ <linux64id>linux64</linux64id>
+ <win64id>win64</win64id>
+ <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>
+ <win64outputdir>target/assembly/${win64id}</win64outputdir>
+ <version.output>target/version</version.output>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
<groupId>org.openo.holmes.actions</groupId>
<artifactId>holmes-actions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
+ <artifactId>dropwizard-core</artifactId>
+ <version>${dropwizard.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-db</artifactId>
<version>${dropwizard.version}</version>
</dependency>
@@ -72,6 +91,7 @@
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
<version>${swagger.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
@@ -128,9 +148,15 @@
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
- <version>1.6.4</version>
+ <version>1.6.5</version>
<scope>test</scope>
</dependency>
+
+ <dependency>
+ <groupId>org.openo.client.cli</groupId>
+ <artifactId>swagger-sdk</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
</dependencies>
</dependencyManagement>