You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by th...@apache.org on 2015/11/03 03:27:39 UTC

[38/50] [abbrv] incubator-apex-core git commit: Fix version lookup.

Fix version lookup.


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/0aaec0c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/0aaec0c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/0aaec0c5

Branch: refs/heads/master
Commit: 0aaec0c56db8c635b167d4cb4bd1f8b206b649d2
Parents: e562da3
Author: Thomas Weise <th...@datatorrent.com>
Authored: Wed Oct 21 12:55:58 2015 -0700
Committer: Thomas Weise <th...@datatorrent.com>
Committed: Wed Oct 21 12:55:58 2015 -0700

----------------------------------------------------------------------
 engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/0aaec0c5/engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java
----------------------------------------------------------------------
diff --git a/engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java b/engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java
index cd1bc3b..1321491 100644
--- a/engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java
+++ b/engine/src/main/java/com/datatorrent/stram/util/VersionInfo.java
@@ -57,7 +57,7 @@ public class VersionInfo {
         }
       }
 
-      Enumeration<URL> resources = VersionInfo.class.getClassLoader().getResources("META-INF/maven/com.datatorrent/dt-engine/pom.properties");
+      Enumeration<URL> resources = VersionInfo.class.getClassLoader().getResources("META-INF/maven/org.apache.apex/apex-engine/pom.properties");
       while (resources.hasMoreElements()) {
         Properties pomInfo = new Properties();
         pomInfo.load(resources.nextElement().openStream());