You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/03/20 08:32:36 UTC

svn commit: r387162 - in /incubator/harmony/enhanced/classlib/trunk/make: build-java.xml patternsets/crypto.txt

Author: tellison
Date: Sun Mar 19 23:32:28 2006
New Revision: 387162

URL: http://svn.apache.org/viewcvs?rev=387162&view=rev
Log:
Build some of the security code into a crypto JAR.
Should break out crypto into its own module.

Added:
    incubator/harmony/enhanced/classlib/trunk/make/patternsets/crypto.txt
Modified:
    incubator/harmony/enhanced/classlib/trunk/make/build-java.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/build-java.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/make/build-java.xml?rev=387162&r1=387161&r2=387162&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-java.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-java.xml Sun Mar 19 23:32:28 2006
@@ -126,10 +126,17 @@
                 excludesfile="${components.patternsets}/kernel.txt" />
         </jar>
 
-        <!-- Create x-nets jar -->
+        <!-- Create x-net jar -->
         <jar destfile="${components.output}/x-net.jar" manifest="x-net/META-INF/MANIFEST.MF">
             <fileset dir="${build.output}"
                 includesfile="${components.patternsets}/x-net.txt"
+                excludesfile="${components.patternsets}/kernel.txt" />
+        </jar>
+
+        <!-- Create crypto jar -->
+        <jar destfile="${components.output}/crypto.jar">  <!-- TODO: manifest -->
+            <fileset dir="${build.output}"
+                includesfile="${components.patternsets}/crypto.txt"
                 excludesfile="${components.patternsets}/kernel.txt" />
         </jar>
 

Added: incubator/harmony/enhanced/classlib/trunk/make/patternsets/crypto.txt
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/make/patternsets/crypto.txt?rev=387162&view=auto
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/patternsets/crypto.txt (added)
+++ incubator/harmony/enhanced/classlib/trunk/make/patternsets/crypto.txt Sun Mar 19 23:32:28 2006
@@ -0,0 +1,16 @@
+# Copyright 2006 The Apache Software Foundation or its licensors, as applicable
+# 
+# Licensed 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.
+ 
+javax/crypto/*
+org/apache/harmony/security/x/crypto/*