summaryrefslogtreecommitdiffstats
path: root/rulemgt/dependency-reduced-pom.xml
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2017-02-16 11:03:26 +0800
committerGuangrongFu <fu.guangrong@zte.com.cn>2017-02-16 11:03:26 +0800
commit117d10f41822d05c9162d771d7ab4d127d11ffad (patch)
tree163cdef5cf3d7bdcaf035bbce1f48d8ff56e3ae8 /rulemgt/dependency-reduced-pom.xml
parent940673f63b73aa9d2ce2a65399164051418438b0 (diff)
Add UT for Classes
Change-Id: I6a539b74697d324be801777c2b0da262648a426f Issue-ID: HOLMES-14 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt/dependency-reduced-pom.xml')
-rw-r--r--rulemgt/dependency-reduced-pom.xml211
1 files changed, 211 insertions, 0 deletions
diff --git a/rulemgt/dependency-reduced-pom.xml b/rulemgt/dependency-reduced-pom.xml
new file mode 100644
index 0000000..b434fb1
--- /dev/null
+++ b/rulemgt/dependency-reduced-pom.xml
@@ -0,0 +1,211 @@
+<?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/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>holmes-rulemgt-parent</artifactId>
+ <groupId>org.openo.holmes.rule-management</groupId>
+ <version>1.1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>holmes-rulemgt</artifactId>
+ <name>holmes-rulemgt-service</name>
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**/*.properties</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.3</version>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <transformers>
+ <transformer />
+ <transformer>
+ <mainClass>org.openo.holmes.rulemgt.RuleActiveApp</mainClass>
+ </transformer>
+ </transformers>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <createDependencyReducedPom>true</createDependencyReducedPom>
+ <filters>
+ <filter>
+ <artifact>*:*</artifact>
+ <excludes>
+ <exclude>META-INF/*.SF</exclude>
+ <exclude>META-INF/*.DSA</exclude>
+ <exclude>META-INF/*.RSA</exclude>
+ </excludes>
+ </filter>
+ </filters>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.dropwizard</groupId>
+ <artifactId>dropwizard-core</artifactId>
+ <version>0.8.0</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>dropwizard-util</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-jackson</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-validation</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-configuration</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-logging</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-metrics</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-jersey</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-servlets</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-jetty</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>dropwizard-lifecycle</artifactId>
+ <groupId>io.dropwizard</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>metrics-jvm</artifactId>
+ <groupId>io.dropwizard.metrics</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>metrics-servlets</artifactId>
+ <groupId>io.dropwizard.metrics</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>metrics-healthchecks</artifactId>
+ <groupId>io.dropwizard.metrics</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>argparse4j</artifactId>
+ <groupId>net.sourceforge.argparse4j</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>jetty-setuid-java</artifactId>
+ <groupId>org.eclipse.jetty.toolchain.setuid</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ <version>1.3</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>hamcrest-core</artifactId>
+ <groupId>org.hamcrest</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module-junit4</artifactId>
+ <version>1.4.10</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>powermock-module-junit4-common</artifactId>
+ <groupId>org.powermock</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-easymock</artifactId>
+ <version>1.4.10</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>powermock-api-support</artifactId>
+ <groupId>org.powermock</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>3.0</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>cglib-nodep</artifactId>
+ <groupId>cglib</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>objenesis</artifactId>
+ <groupId>org.objenesis</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.15.0-GA</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
+