diff options
Diffstat (limited to 'rulemgt/pom.xml')
-rw-r--r-- | rulemgt/pom.xml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/rulemgt/pom.xml b/rulemgt/pom.xml index 8fd548f..ac28b37 100644 --- a/rulemgt/pom.xml +++ b/rulemgt/pom.xml @@ -30,6 +30,10 @@ <dependencies> <dependency> + <groupId>org.openo.holmes.actions</groupId> + <artifactId>holmes-actions</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> @@ -49,42 +53,36 @@ <groupId>io.dropwizard</groupId> <artifactId>dropwizard-db</artifactId> </dependency> - <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.4.10</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-easymock</artifactId> <version>1.4.10</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.0</version> <scope>test</scope> </dependency> - <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.15.0-GA</version> <scope>test</scope> </dependency> - </dependencies> <build> <plugins> @@ -101,6 +99,15 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.3</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> |