From: <jbo...@li...> - 2006-01-17 08:45:11
|
Author: mla...@jb... Date: 2006-01-17 03:45:05 -0500 (Tue, 17 Jan 2006) New Revision: 2119 Modified: trunk/labs/jbosswebnp/src/windows/build.xml Log: Update version numbers. Modified: trunk/labs/jbosswebnp/src/windows/build.xml =================================================================== --- trunk/labs/jbosswebnp/src/windows/build.xml 2006-01-17 08:43:48 UTC (rev 2118) +++ trunk/labs/jbosswebnp/src/windows/build.xml 2006-01-17 08:45:05 UTC (rev 2119) @@ -16,8 +16,11 @@ <!-- Initialization properties --> <property name="name" value="JBoss.NET.Proxy"/> <property name="title" value="JBoss .NET Proxy Library"/> - <property name="version" value="1.0.0"/> - <property name="version.number" value="100"/> + <property name="version.major" value="1"/> + <property name="version.minor" value="0"/> + <property name="version.patch" value="0"/> + <property name="version" value="${version.major}.${version.minor}"/> + <property name="version.number" value="${version.major}${version.minor}${version.patch}"/> <property name="project" value="NET.mscoree"/> <property name="build.dir" value="./dist"/> <property name="build.src" value="${build.dir}/src"/> @@ -211,15 +214,13 @@ basedir="${build.dir}/bin/classes" excludes="**/*.java"> <manifest> - <section name="NET"> - <attribute name="Specification-Title" value="JBoss.NET.Proxy"/> - <attribute name="Specification-Version" value="${version}"/> - <attribute name="Specification-Vendor" value="JBoss Inc."/> - <attribute name="Implementation-Title" value="org.jboss.NET"/> - <attribute name="Implementation-Vendor" value="JBoss .NET Proxy"/> - <attribute name="Implementation-Vendor-Id" value="org.jboss"/> - <attribute name="Implementation-Version" value="${version} (build ${DSTAMP} ${TSTAMP})"/> - </section> + <attribute name="Specification-Title" value="JBoss .NET Core Proxy Library"/> + <attribute name="Specification-Version" value="${version}"/> + <attribute name="Specification-Vendor" value="JBoss, Inc."/> + <attribute name="Implementation-Title" value="JBoss .NET Core"/> + <attribute name="Implementation-Vendor" value="JBoss, Inc."/> + <attribute name="Implementation-Vendor-Id" value="org.jboss"/> + <attribute name="Implementation-Version" value="${version}.${version.patch}"/> </manifest> <metainf file="${src.dir}/LICENSE"> </metainf> |