Change DRLVM java.vm.version property to something more meaningful.

git-svn-id: https://svn.apache.org/repos/asf/harmony/enhanced/drlvm/trunk@921282 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/vm/vmcore/src/init/vm_properties.cpp b/vm/vmcore/src/init/vm_properties.cpp
index 5b56008..68a5ed4 100644
--- a/vm/vmcore/src/init/vm_properties.cpp
+++ b/vm/vmcore/src/init/vm_properties.cpp
@@ -163,7 +163,8 @@
     properties.set_new("java.vm.specification.version", "1.0");
     properties.set_new("java.vm.specification.vendor", "Sun Microsystems Inc.");
     properties.set_new("java.vm.specification.name", "Java Virtual Machine Specification");
-    properties.set_new("java.vm.version", "11.2.0");
+    properties.set_new("java.vm.version",
+                       JAVA_RUNTIME_VERSION "-r" VERSION_SVN_TAG);
     properties.set_new("java.vm.vendor", "Apache Software Foundation");
     properties.set_new("java.vm.name", "DRLVM");
     properties.set_new("java.runtime.name", "Apache Harmony");