You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2005/02/24 23:23:44 UTC

svn commit: r155262 - in incubator/directory/protocols/kerberos/trunk: core/project.xml core/src/java/org/apache/kerberos/protocol/ protocol/

Author: erodriguez
Date: Thu Feb 24 14:23:42 2005
New Revision: 155262

URL: http://svn.apache.org/viewcvs?view=rev&rev=155262
Log:
Rolled MINA front-end implementation into core.

Added:
    incubator/directory/protocols/kerberos/trunk/core/src/java/org/apache/kerberos/protocol/
      - copied from r155236, incubator/directory/protocols/kerberos/trunk/protocol/src/java/org/apache/kerberos/protocol/
Removed:
    incubator/directory/protocols/kerberos/trunk/protocol/
Modified:
    incubator/directory/protocols/kerberos/trunk/core/project.xml

Modified: incubator/directory/protocols/kerberos/trunk/core/project.xml
URL: http://svn.apache.org/viewcvs/incubator/directory/protocols/kerberos/trunk/core/project.xml?view=diff&r1=155261&r2=155262
==============================================================================
--- incubator/directory/protocols/kerberos/trunk/core/project.xml (original)
+++ incubator/directory/protocols/kerberos/trunk/core/project.xml Thu Feb 24 14:23:42 2005
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
 <project>
   <extend>${basedir}/../project.xml</extend>
   <pomVersion>1</pomVersion>
@@ -9,27 +10,43 @@
   <package>org.apache.kerberos</package>
   <inceptionYear>2004</inceptionYear>
   <shortDescription>The Apache Kerberos Server Core</shortDescription>
-  <description>
-    A Kerberos 5 protocol server.
-  </description>
+  <description>A Kerberos 5 protocol server.</description>
+  
+  <properties>
+    <osgi.import.package></osgi.import.package>
+    <osgi.import.package>org.apache.kerberos.io.decoder,org.apache.kerberos.io.encoder,org.osgi.framework,org.apache.kerberos.kdc,org.apache.kerberos.messages</osgi.import.package>
+  </properties>
+  
   <dependencies>
     <dependency>
+      <groupId>incubator-directory</groupId>
+      <artifactId>mina</artifactId>
+      <version>0.7-SNAPSHOT</version>
+    </dependency>
+    <dependency>
       <groupId>bouncycastle</groupId>
       <artifactId>bcprov-jdk14</artifactId>
       <version>124</version>
       <properties>
         <gump.project>bcprov</gump.project>
+        <osgi.jar.bundle>true</osgi.jar.bundle>
       </properties>
     </dependency>
     <dependency>
       <groupId>incubator-directory</groupId>
       <artifactId>asn1-der</artifactId>
       <version>0.3-SNAPSHOT</version>
+      <properties>
+        <osgi.jar.bundle>true</osgi.jar.bundle>
+      </properties>
     </dependency>
     <dependency>
       <groupId>incubator-directory</groupId>
       <artifactId>ldap-common</artifactId>
       <version>0.9-SNAPSHOT</version>
+      <properties>
+        <osgi.jar.bundle>true</osgi.jar.bundle>
+      </properties>
     </dependency>
   </dependencies>
 </project>