Author: akarasulu Date: Tue Sep 14 18:41:29 2004 New Revision: 46064 Modified: incubator/directory/seda/trunk/project.xml Log: added all the stuff we blew away before
Modified: incubator/directory/seda/trunk/project.xml ============================================================================== --- incubator/directory/seda/trunk/project.xml (original) +++ incubator/directory/seda/trunk/project.xml Tue Sep 14 18:41:29 2004 @@ -1,14 +1,47 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <project> + <groupId>incubator-directory</groupId> <id>seda</id> - <name>seda</name> <package>org.apache.seda</package> <currentVersion>SNAPSHOT</currentVersion> <inceptionYear>2004</inceptionYear> - - <shortDescription>A service oriented SEDA framework</shortDescription> + + <organization> + <name>The Apache Incubator</name> + <url>http://incubator.apache.org</url> + <logo>/images/apache-incubator-logo.png</logo> + </organization> + + <inceptionYear>2003</inceptionYear> + <package>org.apache.seda</package> + + <logo>/images/apache-directory-logo.png</logo> + <url>http://incubator.apache.org/directory</url> + + <issueTrackingUrl> + http://nagoya.apache.org/scarab/servlet/scarab + </issueTrackingUrl> + <siteAddress>directory.apache.org</siteAddress> + <siteDirectory>/home/akarasulu/public_html</siteDirectory> + <distributionDirectory> + /home/akarasulu/public_html/dist + </distributionDirectory> + + <repository> + <connection> + scm:svn:http://cvs.apache.org/repos/asf/incubator/directory/seda/trunk/${module.path}::: + </connection> + + <url> + http://cvs.apache.org/viewcvs.cgi/incubator/directory/seda/trunk/${module.path}/?root=Apache-SVN + </url> + + <developerConnection> + http://cvs.apache.org/repos/asf/incubator/directory/seda/trunk/${module.path} + </developerConnection> + </repository> <description> The SEDA protocol server framework contains service interfaces and @@ -18,10 +51,52 @@ BETTER DESC TO FOLLOW. </description> + <shortDescription>An internet protocol server framework</shortDescription> + + <description> + The seda framework is designed for rapidly building internet protocol + servers that can handle a high degree of concurrency. Users of the + framework need not worry about low level IO details and plumbing. They + can use this time to focus on their protocol of choice which ultimately + snaps into the framework using a couple of interfaces. The same plumbing + within this service oriented frontend can be used to drive multiple + protocols. The framework is based on non-blocking IO using NIO selectors + and channels: although these details are not exposed to the protocol + developer. It has a simple intuitive Staged Event Driven Architecture + that does not try to get overly theoretical while taking advantage of all + the benefits SEDA has to offer for building reponsive servers under a high + degree of load. + </description> + + <mailingLists> + <mailingList> + <name>Apache Directory Developement - use [seda] prefix</name> + <subscribe> + [EMAIL PROTECTED] + </subscribe> + <unsubscribe> + [EMAIL PROTECTED] + </unsubscribe> + <archive> + http://nagoya.apache.org/eyebrowse/SummarizeList?listId=181 + </archive> + </mailingList> + </mailingLists> + + <licenses> + <license> + <name>Apache 1.1 License</name> + <url> + http://cvs.apache.org/viewcvs.cgi/incubator/directory/LICENSE.txt?rev=1369&root=Apache-SVN&view=markup + </url> + <distribution>repo</distribution> + </license> + </licenses> + <dependencies> <dependency> - <groupId>commons-logging</groupId> + <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.3</version> <url>http://jakarta.apache.org/commons/logging</url> @@ -35,8 +110,6 @@ </dependency> <!-- Dependencies required for running test cases --> - - <!-- THIS SHOULD ONLY BE USED FOR TESTING --> <dependency> <groupId>commons-threadpool</groupId> <artifactId>commons-threadpool</artifactId> @@ -52,6 +125,80 @@ </dependency> </dependencies> - + + + <build> + <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress> + <sourceDirectory>${basedir}/src/java</sourceDirectory> + <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory> + <integrationUnitTestSourceDirectory/> + <aspectSourceDirectory/> + + <unitTest> + <includes> + <include>**/*Test*</include> + <include>**/*TestCase*</include> + </includes> + + <excludes> + <exclude></exclude> + </excludes> + + <resources> + <resource> + <directory>${basedir}/src/test</directory> + <includes> + <include>**/*.dtd</include> + <include>**/*.ldif</include> + <include>**/*.properties</include> + <include>**/*.x*</include> + <include>**/*.mf</include> + <include>**/*.jar</include> + </includes> + </resource> + + <resource> + <directory>${basedir}/src/test</directory> + <includes> + <include>**/*.dtd</include> + <include>**/*.ldif</include> + <include>**/*.properties</include> + <include>**/*.x*</include> + <include>**/*.mf</include> + <include>**/*.jar</include> + </includes> + </resource> + </resources> + </unitTest> + + <resources> + <resource> + <directory>${basedir}/src/java</directory> + <includes> + <include>**/*.dtd</include> + <include>**/*.properties</include> + <include>**/*.x*</include> + </includes> + </resource> + + <resource> + <directory>${basedir}/conf</directory> + <targetPath>BLOCK-INF</targetPath> + <includes> + <include>block.xml</include> + </includes> + </resource> + </resources> + <jars></jars> + </build> + + <reports> + <report>maven-jxr-plugin</report> + <report>maven-license-plugin</report> + <!-- <report>maven-changelog-plugin</report --> + <!-- <report>maven-javadoc-plugin</report> --> + <report>maven-tasklist-plugin</report> + </reports> + </project>
