|
|
Author: djencks
Date: Wed Aug 15 00:04:40 2007
New Revision: 566040
URL: http://svn.apache.org/viewvc?view=rev&rev=566040
Log:
apparently I never added bootstrap-partition to svn before
Added:
directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/
directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
(with props)
Added: directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
URL:
http://svn.apache.org/viewvc/directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml?view=auto&rev=566040
==============================================================================
--- directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
(added)
+++ directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml Wed
Aug 15 00:04:40 2007
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.directory.triplesec</groupId>
+ <artifactId>triplesec-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>triplesec-bootstrap-partition</artifactId>
+ <name>Triplesec Bootstrap Partition</name>
+ <packaging>jar</packaging>
+ <description>
+ A special jar file that contains a pre-loaded partition with schema
+ information. This schema partition will mount off of the ou=schema
+ namingContext. This artifact contains the db files for this partition.
+ It must be used with the apacheds-bootstrap-extract jar which contains
+ the classes to install these files.
+ </description>
+ <dependencies>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>nlog4j</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.directory.server</groupId>
+ <artifactId>apacheds-jdbm-store</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.directory.server</groupId>
+ <artifactId>apacheds-bootstrap-extract</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.directory.server</groupId>
+ <artifactId>apacheds-schema-extras</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.directory.triplesec</groupId>
+ <artifactId>triplesec-store</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.directory.server</groupId>
+ <artifactId>apacheds-bootstrap-plugin</artifactId>
+ <configuration>
+ <disabledSchemas>
+ <disabledSchema>nis</disabledSchema>
+ <disabledSchema>samba</disabledSchema>
+ <disabledSchema>autofs</disabledSchema>
+ <disabledSchema>apachedns</disabledSchema>
+ <disabledSchema>corba</disabledSchema>
+ <disabledSchema>dhcp</disabledSchema>
+ <disabledSchema>mozilla</disabledSchema>
+ </disabledSchemas>
+ <indexedAttributes>
+ <indexedAttribute>objectClass</indexedAttribute>
+ <indexedAttribute>ou</indexedAttribute>
+ <indexedAttribute>cn</indexedAttribute>
+ <indexedAttribute>m-oid</indexedAttribute>
+ <indexedAttribute>m-disabled</indexedAttribute>
+ </indexedAttributes>
+ <bootstrapSchemaClasses>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.ApachednsSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.AutofsSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.CollectiveSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.CorbaSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.CosineSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.DhcpSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.InetorgpersonSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.JavaSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.Krb5kdcSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.MozillaSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.NisSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.server.schema.bootstrap.SambaSchema</bootstrapSchemaClass>
+
<bootstrapSchemaClass>org.apache.directory.triplesec.store.schema.TriplesecSchema</bootstrapSchemaClass>
+ </bootstrapSchemaClasses>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>load</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange:
directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange:
directory/sandbox/djencks/triplesec-jacc2/bootstrap-partition/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
|
|