You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/02/17 09:49:19 UTC

svn commit: r910865 - in /harmony/enhanced/classlib/branches/java6: depends/files/ depends/jars/ modules/jws/ modules/jws/META-INF/ modules/jws/make/

Author: hindessm
Date: Wed Feb 17 08:49:19 2010
New Revision: 910865

URL: http://svn.apache.org/viewvc?rev=910865&view=rev
Log:
Adding WS Metadata dependency.

Added:
    harmony/enhanced/classlib/branches/java6/modules/jws/
    harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/
    harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF   (with props)
    harmony/enhanced/classlib/branches/java6/modules/jws/build.xml   (with props)
    harmony/enhanced/classlib/branches/java6/modules/jws/make/
    harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties   (with props)
Modified:
    harmony/enhanced/classlib/branches/java6/depends/files/bootclasspath.properties
    harmony/enhanced/classlib/branches/java6/depends/jars/   (props changed)

Modified: harmony/enhanced/classlib/branches/java6/depends/files/bootclasspath.properties
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/branches/java6/depends/files/bootclasspath.properties?rev=910865&r1=910864&r2=910865&view=diff
==============================================================================
--- harmony/enhanced/classlib/branches/java6/depends/files/bootclasspath.properties (original)
+++ harmony/enhanced/classlib/branches/java6/depends/files/bootclasspath.properties Wed Feb 17 08:49:19 2010
@@ -215,3 +215,5 @@
 bootclasspath.54=geronimo-jaxb_2.1_spec-1.0/geronimo-jaxb_2.1_spec-1.0.jar
 
 bootclasspath.55=geronimo-stax-api_1.0_spec-1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar
+
+bootclasspath.56=geronimo-ws-metadata_2.0_spec-1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.jar

Propchange: harmony/enhanced/classlib/branches/java6/depends/jars/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Feb 17 08:49:19 2010
@@ -17,3 +17,4 @@
 geronimo-stax-api_1.0_spec-1.0.1
 geronimo-activation_1.1_spec-1.0.2
 geronimo-jaxb_2.1_spec-1.0
+geronimo-ws-metadata_2.0_spec-1.1.2

Added: harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF?rev=910865&view=auto
==============================================================================
--- harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF (added)
+++ harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF Wed Feb 17 08:49:19 2010
@@ -0,0 +1,13 @@
+Manifest-Version: 1.0
+Specification-Title: Web Services Metadata for the Java Specification
+Specification-Version: 2.00
+Bundle-ManifestVersion: 2
+Bundle-Name: Harmony Geronimo JWS
+Bundle-SymbolicName: org.apache.harmony.jws
+Bundle-Version: 1.1.2
+Bundle-ClassPath: geronimo-ws-metadata_2.0_spec-1.1.2.jar
+Eclipse-JREBundle: true
+Export-Package: javax.jws,
+  javax.jws.soap
+Import-Package: java.lang,
+  java.lang.annotation

Propchange: harmony/enhanced/classlib/branches/java6/modules/jws/META-INF/MANIFEST.MF
------------------------------------------------------------------------------
    svn:eol-style = native

Added: harmony/enhanced/classlib/branches/java6/modules/jws/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/branches/java6/modules/jws/build.xml?rev=910865&view=auto
==============================================================================
--- harmony/enhanced/classlib/branches/java6/modules/jws/build.xml (added)
+++ harmony/enhanced/classlib/branches/java6/modules/jws/build.xml Wed Feb 17 08:49:19 2010
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+<project name="JWS Build" default="build" basedir=".">
+    <description>Build for jws component</description>
+
+    <property name="hy.hdk" location="${basedir}/../../deploy" />
+    <property name="hy.jdk" location="${hy.hdk}/jdk" />
+    <property name="depends.dir" location="${basedir}/../../depends" />
+    <import file="${hy.hdk}/build/ant/properties.xml" />
+    <import file="${hy.hdk}/build/ant/depends.xml" />
+
+    <target name="build" depends="check-depends, -copy-jars" />
+
+    <target name="check-depends">
+        <check-one-file src="${jws.url}" dest="${jws.jar}" />
+    </target>
+        
+    <target name="fetch-depends">
+
+        <mkdir dir="${jws.dir}" />
+        <download-one-file src="${jws.url}" dest="${jws.jar}"
+                           md5="${jws.md5}" />
+
+    </target>
+
+    <target name="-copy-jars">
+        <copy todir="${hy.jdk}/jre/lib/boot/${jws.basename}"
+              file="${jws.jar}" />
+        <copy todir="${hy.jdk}/jre/lib/boot/${jws.basename}/META-INF">
+            <fileset dir="META-INF" />
+        </copy>
+    </target>
+
+    <target name="test" />
+
+    <target name="clean">
+        <delete dir="${hy.jdk}/jre/lib/boot/${jws.basename}" />
+    </target>
+
+</project>

Propchange: harmony/enhanced/classlib/branches/java6/modules/jws/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties?rev=910865&view=auto
==============================================================================
--- harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties (added)
+++ harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties Wed Feb 17 08:49:19 2010
@@ -0,0 +1,26 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+#     http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+depends.jars=${depends.dir}/jars
+geronimo.base=http://repo2.maven.org/maven2/org/apache/geronimo/specs
+jws.base=${geronimo.base}/geronimo-ws-metadata_2.0_spec/1.1.2
+
+jws.version=2.0_spec-1.1.2
+jws.basename=geronimo-ws-metadata_${jws.version}
+jws.jarname=${jws.basename}.jar
+jws.dir=${depends.jars}/${jws.basename}
+jws.jar=${jws.dir}/${jws.jarname}
+jws.url=${jws.base}/${jws.jarname}
+jws.md5=3d0fbbca45e8877dee74e83bc83317d5

Propchange: harmony/enhanced/classlib/branches/java6/modules/jws/make/depends.properties
------------------------------------------------------------------------------
    svn:eol-style = native