You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2017/06/23 14:38:16 UTC

qpid-interop-test git commit: QPIDIT-83: Classpath for JMS shims points to Maven repository rather than installed directory

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master d300ca456 -> ae5bc341d


QPIDIT-83: Classpath for JMS shims points to Maven repository rather than installed directory


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/ae5bc341
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/ae5bc341
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/ae5bc341

Branch: refs/heads/master
Commit: ae5bc341de974cb718794e9f0d24135be0e17609
Parents: d300ca4
Author: Kim van der Riet <kp...@apache.org>
Authored: Fri Jun 23 10:37:44 2017 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Fri Jun 23 10:37:44 2017 -0400

----------------------------------------------------------------------
 src/python/qpid_interop_test/shims.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/ae5bc341/src/python/qpid_interop_test/shims.py
----------------------------------------------------------------------
diff --git a/src/python/qpid_interop_test/shims.py b/src/python/qpid_interop_test/shims.py
index 3ca598a..e73dfaa 100644
--- a/src/python/qpid_interop_test/shims.py
+++ b/src/python/qpid_interop_test/shims.py
@@ -215,11 +215,6 @@ class QpidJmsShim(Shim):
     # Maven works out all the deps, should use that
     QPID_JMS_SHIM_VER = '0.1.0-SNAPSHOT'
 
-    # Classpath components
-    MAVEN_REPO_PATH = path.join(getenv('HOME'), '.m2', 'repository')
-    QPID_JMS_SHIM_JAR = path.join(MAVEN_REPO_PATH, 'org', 'apache', 'qpid', 'qpid-interop-test-jms-shim',
-                                  QPID_JMS_SHIM_VER, 'qpid-interop-test-jms-shim-%s.jar' % QPID_JMS_SHIM_VER)
-
     JAVA_HOME = getenv('JAVA_HOME', '/usr/bin') # Default only works in Linux
     JAVA_EXEC = path.join(JAVA_HOME, 'java')
 
@@ -231,7 +226,7 @@ class QpidJmsShim(Shim):
 
     def get_java_class_path(self):
         """Method to construct and return the Java class path necessary to run the shim"""
-        return ':'.join([self.QPID_JMS_SHIM_JAR, self.dependency_class_path])
+        return self.dependency_class_path;
 
 class AmqpNetLiteShim(Shim):
     """Shim for AMQP.Net Lite client"""


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org