Changed product name and version information so that they will be specified by

build.xml, rather than being hard-coded here. Merging these changes in from
the tck-jaxp-1_2_0 branch.


git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226223 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mrglavas 2005-06-04 03:45:36 +00:00
parent 520b220df3
commit 9a2f84485a

View File

@ -47,7 +47,7 @@ public class Version
*/
public static String getProduct()
{
return "XmlCommons";
return "@impl.name@";
}
/**
@ -56,7 +56,7 @@ public class Version
*/
public static String getVersionNum()
{
return "1.0";
return "@impl.version@";
}
/**