Made some pom changes so that the ZkMiniCluster can be used in the MiniCluster in blur-core.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/023277c8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/023277c8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/023277c8 Branch: refs/heads/apache-blur-0.2 Commit: 023277c88b250a8ec7f3200f345030005c901d0c Parents: e0c73d4 Author: Aaron McCurry <[email protected]> Authored: Sat Sep 21 22:26:15 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sat Sep 21 22:26:15 2013 -0400 ---------------------------------------------------------------------- blur-core/pom.xml | 7 +++++++ blur-util/pom.xml | 12 +++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/023277c8/blur-core/pom.xml ---------------------------------------------------------------------- diff --git a/blur-core/pom.xml b/blur-core/pom.xml index 220be4e..e5792e3 100644 --- a/blur-core/pom.xml +++ b/blur-core/pom.xml @@ -59,6 +59,13 @@ under the License. </dependency> <dependency> <groupId>org.apache.blur</groupId> + <artifactId>blur-util</artifactId> + <type>test-jar</type> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.blur</groupId> <artifactId>blur-gui</artifactId> <version>${project.version}</version> <type>jar</type> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/023277c8/blur-util/pom.xml ---------------------------------------------------------------------- diff --git a/blur-util/pom.xml b/blur-util/pom.xml index 1e5e746..44f6274 100644 --- a/blur-util/pom.xml +++ b/blur-util/pom.xml @@ -147,7 +147,6 @@ under the License. <build> <pluginManagement> <plugins> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -157,6 +156,17 @@ under the License. </configuration> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs>
