You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jc...@apache.org on 2005/08/26 13:05:33 UTC

svn commit: r240201 - in /jakarta/commons/sandbox/proxy/trunk: project.properties project.xml

Author: jcarman
Date: Fri Aug 26 04:05:30 2005
New Revision: 240201

URL: http://svn.apache.org/viewcvs?rev=240201&view=rev
Log:
Mavenization.

Added:
    jakarta/commons/sandbox/proxy/trunk/project.properties
    jakarta/commons/sandbox/proxy/trunk/project.xml

Added: jakarta/commons/sandbox/proxy/trunk/project.properties
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/proxy/trunk/project.properties?rev=240201&view=auto
==============================================================================
--- jakarta/commons/sandbox/proxy/trunk/project.properties (added)
+++ jakarta/commons/sandbox/proxy/trunk/project.properties Fri Aug 26 04:05:30 2005
@@ -0,0 +1,11 @@
+#$Id: project.properties$
+
+#enable subversion support
+maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
+
+#xdoc settings
+maven.xdoc.data=left
+
+#checkstyle settings
+#maven.checkstyle.properties=${basedir}/checkstyle.xml
+#maven.checkstyle.header.file=${basedir}/checkstyle.header.txt

Added: jakarta/commons/sandbox/proxy/trunk/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/proxy/trunk/project.xml?rev=240201&view=auto
==============================================================================
--- jakarta/commons/sandbox/proxy/trunk/project.xml (added)
+++ jakarta/commons/sandbox/proxy/trunk/project.xml Fri Aug 26 04:05:30 2005
@@ -0,0 +1,293 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- $Id: project.xml$ -->
+<project>
+    <pomVersion>3</pomVersion>
+    <id>commons-proxy</id>
+    <name>Commons Proxy</name>
+    <groupId>commons-proxy</groupId>
+    <currentVersion>0.1</currentVersion>
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://apache.org</url>
+        <logo>http://apache.org/images/asf_logo_wide.png</logo>
+    </organization>
+    <inceptionYear>2005</inceptionYear>
+    <package>org.apache.commons.proxy</package>
+    <logo>/images/logo.png</logo>
+    <shortDescription>Java library for dynamic proxying</shortDescription>
+    <url>http://jakarta.apache.org/commons/sandbox/proxy</url>
+    <issueTrackingUrl>http://issues.apache.org/bugzilla</issueTrackingUrl>
+    <siteAddress>jakarta.apache.org</siteAddress>
+    <siteDirectory>/somewhere/commons/sandbox/proxy/</siteDirectory>
+    <description><![CDATA[
+    <p>
+    Commons proxy is a java library for creating dynamic proxys.
+    </p>
+    <section name="Features">
+      <p>
+        Commons-proxy comes with the follwing features
+        <ul>
+          <li>simple and easy to use API</li>
+          <li>based on AOP Alliance</li>
+          <li>implementations using java.reflect.Proxy,cglib and javassist</li>
+          <li>really fast</li>
+        </ul>
+      </p>
+    </section>
+  ]]></description>
+
+    <repository>
+
+        <connection>scm:svn:http:svn.apache.org:repos/asf/jakarta/commons/sandbox/proxy:trunk</connection>
+
+        <developerConnection>
+            scm:svn:https:svn.apache.org:repos/asf/jakarta/commons/sandbox/proxy:trunk</developerConnection>
+
+        <url>http://svn.apache.org/viewcvs.cgi/jakarta/commons/sandbox/proxy/trunk/</url>
+    </repository>
+
+    <versions>
+        <version>
+            <id>0.1</id>
+            <name>0.1</name>
+            <tag>Version_0_1</tag>
+        </version>
+    </versions>
+
+    <branches>
+    </branches>
+
+    <mailingLists>
+        <mailingList>commons-dev@jakarta.apache.org</mailingList>
+    </mailingLists>
+
+    <developers>
+        <developer>
+            <name>James Carman</name>
+            <id>carman</id>
+            <email>james@carmanconsulting.com</email>
+            <organization>carmanconsulting.com</organization>
+            <roles>
+                <role>admin</role>
+                <role>designer</role>
+                <role>developer</role>
+            </roles>
+            <url>http://www.carmanconsulting.com/</url>
+            <timezone>+1</timezone>
+        </developer>
+
+    </developers>
+
+    <contributors>
+        <contributor>
+            <name>J#246;rg Hohwiller</name>
+            <email>hohwille@users.sourceforge.net</email>
+            <organization/>
+            <roles>
+                <role>mavenizer</role>
+            </roles>
+            <url></url>
+        </contributor>
+        <contributor>
+            <name>J#246;rg Schaible</name>
+            <email>joerg.schaible@gmx.de</email>
+            <organization/>
+            <roles>
+                <role></role>
+            </roles>
+            <url></url>
+        </contributor>
+    </contributors>
+
+    <licenses>
+        <license>
+            <name>ASL</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repro</distribution>
+        </license>
+    </licenses>
+
+    <dependencies>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib</artifactId>
+            <version>2.1</version>
+            <url>http://cglib.sourceforge.net</url>
+            <properties>
+                <comment>code generation library</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>javassist</groupId>
+            <artifactId>javassist</artifactId>
+            <version>3.0</version>
+            <url>http://www.csg.is.titech.ac.jp/~chiba/javassist/</url>
+            <properties>
+                <comment>java programming assistant - library for bytecode maniplation</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>aopalliance</groupId>
+            <artifactId>aopalliance</artifactId>
+            <version>1.0</version>
+            <url>http://aopalliance.sourceforge.net/</url>
+            <properties>
+                <comment>AOP standard API</comment>
+            </properties>
+        </dependency>
+
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis</artifactId>
+            <version>1.2.1</version>
+            <url>http://ws.apache.org/axis/index.html</url>
+            <properties>
+                <comment>XML remote procedure call API</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis-jaxrpc</artifactId>
+            <version>1.2.1</version>
+            <url>http://ws.apache.org/axis/index.html</url>
+            <properties>
+                <comment>XML remote procedure call API</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis-saaj</artifactId>
+            <version>1.2.1</version>
+            <url>http://ws.apache.org/axis/index.html</url>
+            <properties>
+                <comment>XML remote procedure call API</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis-wsdl4j</artifactId>
+            <version>1.5.1</version>
+            <url>http://ws.apache.org/axis/index.html</url>
+            <properties>
+                <comment>XML remote procedure call API</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>hessian</groupId>
+            <artifactId>hessian</artifactId>
+            <version>3.0.1</version>
+            <url>http://www.caucho.com/hessian/</url>
+            <properties>
+                <comment>binary webservices protocol</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>burlap</groupId>
+            <artifactId>burlap</artifactId>
+            <version>2.1.7</version>
+            <url>http://www.caucho.com/burlap/</url>
+            <properties>
+                <comment>library for building webservices really easy</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.0.4</version>
+            <url>http://jakarta.apache.org/commons/logging/</url>
+            <properties>
+                <comment>logging abstraction layer</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>commons-pool</groupId>
+            <artifactId>commons-pool</artifactId>
+            <version>1.2</version>
+            <url>http://jakarta.apache.org/commons/pool/</url>
+            <properties>
+                <comment>pooling API</comment>
+            </properties>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.1</version>
+            <url>http://jakarta.apache.org/commons/collections/</url>
+            <properties>
+                <comment>collection API</comment>
+            </properties>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <nagEmailAddress>james@carmanconsulting.com</nagEmailAddress>
+        <sourceDirectory>${basedir}/src/java</sourceDirectory>
+        <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory>
+        <integrationUnitTestSourceDirectory/>
+        <aspectSourceDirectory/>
+
+        <unitTest>
+            <includes>
+                <include>**/*TC.java</include>
+            </includes>
+            <excludes></excludes>
+            <resources>
+                <resource>
+                    <directory>${maven.src.dir}/test</directory>
+                    <includes>
+                        <include>**/*.dtd</include>
+                        <include>**/*.properties</include>
+                        <include>**/*.x*</include>
+                        <include>**/*.mf</include>
+                        <include>**/*.jar</include>
+                    </includes>
+                </resource>
+            </resources>
+        </unitTest>
+
+        <resources>
+            <resource>
+                <directory>${maven.src.dir}/java</directory>
+                <includes>
+                    <include>**/*.dtd</include>
+                    <include>**/*.properties</include>
+                    <include>**/*.x*</include>
+                </includes>
+            </resource>
+            <!--
+            <resource>
+              <directory>${maven.src.dir}/conf</directory>
+              <targetPath>BLOCK-INF</targetPath>
+              <includes>
+                <include>block.xml</include>
+              </includes>
+            </resource>
+            -->
+        </resources>
+        <jars></jars>
+    </build>
+
+    <reports>
+        <report>maven-changes-plugin</report>
+        <report>maven-changelog-plugin</report>
+        <report>maven-developer-activity-plugin</report>
+        <report>maven-file-activity-plugin</report>
+        <report>maven-checkstyle-plugin</report>
+        <report>maven-javadoc-plugin</report>
+        <report>maven-jdepend-plugin</report>
+        <report>maven-junit-report-plugin</report>
+        <report>maven-jxr-plugin</report>
+        <report>maven-license-plugin</report>
+        <report>maven-linkcheck-plugin</report>
+        <report>maven-tasklist-plugin</report>
+        <report>maven-faq-plugin</report>
+        <!--
+            <report>maven-pmd-plugin</report>
+            <report>maven-clover-plugin</report>
+            <report>maven-simian-plugin</report>
+            <report>maven-statcvs-plugin</report>
+            <report>maven-xhtml-plugin</report>
+        -->
+    </reports>
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org