Author: seelmann
Date: Sat Feb 12 21:10:01 2011
New Revision: 1070149
URL: http://svn.apache.org/viewvc?rev=1070149&view=rev
Log:
o Added all shared modules
o Only shade 'org.apache.directory' artifacts, no third-party dependencies
o Create dependency reduced POM
o Added Antlr attribution
Added:
directory/shared/trunk/all/src/
directory/shared/trunk/all/src/main/
directory/shared/trunk/all/src/main/appended-resources/
directory/shared/trunk/all/src/main/appended-resources/META-INF/
directory/shared/trunk/all/src/main/appended-resources/META-INF/LICENSE
directory/shared/trunk/all/src/main/appended-resources/META-INF/NOTICE
Modified:
directory/shared/trunk/all/pom.xml
Modified: directory/shared/trunk/all/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/all/pom.xml?rev=1070149&r1=1070148&r2=1070149&view=diff
==============================================================================
--- directory/shared/trunk/all/pom.xml (original)
+++ directory/shared/trunk/all/pom.xml Sat Feb 12 21:10:01 2011
@@ -36,13 +36,58 @@
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>shared-asn1-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-asn1-ber</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ldap-client-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>shared-ldap</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>shared-ldap-model</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-ldap-codec</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>shared-ldap-schema</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-ldap-schema-converter</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-dsml-engine</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-dsml-parser</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>shared-util</artifactId>
+ </dependency>
</dependencies>
<build>
@@ -57,7 +102,9 @@
<goal>shade</goal>
</goals>
<configuration>
+ <shadedGroupFilter>org.apache.directory</shadedGroupFilter>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+ <createDependencyReducedPom>true</createDependencyReducedPom>
<shadedArtifactAttached>false</shadedArtifactAttached>
</configuration>
</execution>
Added: directory/shared/trunk/all/src/main/appended-resources/META-INF/LICENSE
URL: http://svn.apache.org/viewvc/directory/shared/trunk/all/src/main/appended-resources/META-INF/LICENSE?rev=1070149&view=auto
==============================================================================
--- directory/shared/trunk/all/src/main/appended-resources/META-INF/LICENSE (added)
+++ directory/shared/trunk/all/src/main/appended-resources/META-INF/LICENSE Sat Feb 12 21:10:01
2011
@@ -0,0 +1,21 @@
+--------------------------------------------------------------
+ ANTLR 2 License
+
+ANTLR 2 License
+
+We reserve no legal rights to the ANTLR--it is fully in the public domain. An
+individual or company may do whatever they wish with source code distributed
+with ANTLR or the code generated by ANTLR, including the incorporation of
+ANTLR, or its output, into commerical software.
+
+We encourage users to develop software with ANTLR. However, we do ask that
+credit is given to us for developing ANTLR. By "credit", we mean that if you
+use ANTLR or incorporate any source code into one of your programs (commercial
+product, research project, or otherwise) that you acknowledge this fact
+somewhere in the documentation, research report, etc... If you like ANTLR
+and have developed a nice tool with the output, please mention that you
+developed it using ANTLR. In addition, we ask that the headers remain intact
+in our source code. As long as these guidelines are kept, we expect to
+continue enhancing this system and expect to make other tools available as
+they are completed.
+
Added: directory/shared/trunk/all/src/main/appended-resources/META-INF/NOTICE
URL: http://svn.apache.org/viewvc/directory/shared/trunk/all/src/main/appended-resources/META-INF/NOTICE?rev=1070149&view=auto
==============================================================================
--- directory/shared/trunk/all/src/main/appended-resources/META-INF/NOTICE (added)
+++ directory/shared/trunk/all/src/main/appended-resources/META-INF/NOTICE Sat Feb 12 21:10:01
2011
@@ -0,0 +1,3 @@
+
+This software includes code generated by ANTLR 2.
+
|