You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by bl...@apache.org on 2009/08/15 02:36:48 UTC

svn commit: r804420 - /incubator/wink/trunk/wink-scripts/wink-dist/build.xml

Author: bluk
Date: Sat Aug 15 00:36:48 2009
New Revision: 804420

URL: http://svn.apache.org/viewvc?rev=804420&view=rev
Log:
Include correct MANIFEST props in main jar

Specify better values for some props.
Add the Specification properties.

Modified:
    incubator/wink/trunk/wink-scripts/wink-dist/build.xml

Modified: incubator/wink/trunk/wink-scripts/wink-dist/build.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-scripts/wink-dist/build.xml?rev=804420&r1=804419&r2=804420&view=diff
==============================================================================
--- incubator/wink/trunk/wink-scripts/wink-dist/build.xml (original)
+++ incubator/wink/trunk/wink-scripts/wink-dist/build.xml Sat Aug 15 00:36:48 2009
@@ -87,7 +87,7 @@
 			</fileset>
 		</copy>
 	</target>
-	
+
 	<!-- Creates components folder with jar of each component -->
 	<target name="create.dist.components" depends="init">
 		<echo>Making components</echo>
@@ -203,6 +203,7 @@
 			<property name="aggregator.target" value="${dist.components}" />
 			<property name="aggregator.includes" value="*-${project.version}.jar" />
 			<property name="aggregator.jar.name" value="${dist.dist}/${wink.main.jar.name}" />
+			<property name="aggregator.title" value="Apache Wink" />
 		</ant>
 	</target>
 
@@ -215,6 +216,7 @@
 			<property name="aggregator.target" value="${dist.components}" />
 			<property name="aggregator.includes" value="*-${project.version}-sources.jar" />
 			<property name="aggregator.jar.name" value="${dist.dist}/wink-${project.version}-sources.jar" />
+			<property name="aggregator.title" value="Apache Wink Sources" />
 		</ant>
 	</target>
 
@@ -230,9 +232,13 @@
 				<attribute name="Created-By" value="Wink Distribution Script" />
 				<attribute name="Built-By" value="${user.name}" />
 				<attribute name="Build-Jdk" value="${java.version}" />
-				<attribute name="Implementation-Title" value="${title.name}" />
+				<attribute name="Implementation-Title" value="${aggregator.title}" />
 				<attribute name="Implementation-Version" value="${project.version}" />
 				<attribute name="Implementation-Vendor-Id" value="${group.id}" />
+				<attribute name="Implementation-Vendor" value="The Apache Software Foundation" />
+				<attribute name="Specification-Title" value="${aggregator.title}" />
+				<attribute name="Specification-Version" value="${project.version}" />
+				<attribute name="Specification-Vendor" value="The Apache Software Foundation" />
 			</manifest>
 		</jar>
 		<delete dir="${tmp.unzip}" />
@@ -245,7 +251,7 @@
 			<fileset dir="${project.root}/wink-examples">
 				<include name="**/build.xml" />
 				<exclude name="**/GoogleServices-client/**" />
-			    <exclude name="**/target/**" />
+				<exclude name="**/target/**" />
 			</fileset>
 			<filterset>
 				<filter token="SDK_JAR_NAME" value="${wink.main.jar.name}" />
@@ -259,7 +265,7 @@
 				<include name="**/readme.txt" />
 				<include name="**/src/main/**" />
 				<exclude name="**/GoogleServices-client/**" />
-                <exclude name="**/target/**" />
+				<exclude name="**/target/**" />
 			</fileset>
 		</copy>
 	</target>