Repository: giraph Updated Branches: refs/heads/trunk 120091511 -> 614df7f9f
GIRAPH-864 Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/614df7f9 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/614df7f9 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/614df7f9 Branch: refs/heads/trunk Commit: 614df7f9f064e8523b0732ae6ee951f0c9a4be1d Parents: 1200915 Author: Claudio Martella <[email protected]> Authored: Thu Apr 24 10:49:05 2014 +0200 Committer: Claudio Martella <[email protected]> Committed: Thu Apr 24 10:49:05 2014 +0200 ---------------------------------------------------------------------- CHANGELOG | 2 ++ giraph-rexster/giraph-kibble/pom.xml | 15 +++++++++++++++ 2 files changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/614df7f9/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index b1c45d7..9e3d0c3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ Giraph Change Log Release 1.1.0 - unreleased + GIRAPH-864: 'mvn clean test' fails for rexster (armax00 via claudio) + GIRAPH-884: ByteArrayEdges.iterator() throws NPE when no edges are present (cmuchinsky via claudio) http://git-wip-us.apache.org/repos/asf/giraph/blob/614df7f9/giraph-rexster/giraph-kibble/pom.xml ---------------------------------------------------------------------- diff --git a/giraph-rexster/giraph-kibble/pom.xml b/giraph-rexster/giraph-kibble/pom.xml index de13158..710d50c 100644 --- a/giraph-rexster/giraph-kibble/pom.xml +++ b/giraph-rexster/giraph-kibble/pom.xml @@ -55,10 +55,25 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>build-fat-jar</id> + <phase>none</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <id>default-jar</id> + <phase>test</phase> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
