You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by we...@apache.org on 2015/11/09 18:06:10 UTC

incubator-reef git commit: [REEF-921] Fix wrong artifact ID in dependency of pom.xml

Repository: incubator-reef
Updated Branches:
  refs/heads/master 38411c23a -> 43b233e89


[REEF-921] Fix wrong artifact ID in dependency of pom.xml

JIRA:
  [REEF-921](https://issues.apache.org/jira/browse/REEF-921)

Pull request:
  This closes #620


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/43b233e8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/43b233e8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/43b233e8

Branch: refs/heads/master
Commit: 43b233e892918e30acc255b43ed0abbffab61f00
Parents: 38411c2
Author: Dongjoon Hyun <do...@apache.org>
Authored: Sun Nov 8 02:16:17 2015 +0900
Committer: Markus Weimer <we...@apache.org>
Committed: Mon Nov 9 08:57:22 2015 -0800

----------------------------------------------------------------------
 pom.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/43b233e8/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7f370f3..36f2d9a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -511,9 +511,10 @@ under the License.
             <!-- Testing -->
             <dependency>
                 <groupId>${project.groupId}</groupId>
-                <artifactId>test-jar</artifactId>
+                <artifactId>reef-tests</artifactId>
+                <type>test-jar</type>
                 <version>${project.version}</version>
-                <classifier>tests</classifier>
+                <scope>test</scope>
             </dependency>
             <dependency>
                 <groupId>junit</groupId>