You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2007/11/16 14:03:04 UTC

svn commit: r595651 - in /commons/proper/net/trunk: pom.xml src/assembly/ src/assembly/bin.xml src/assembly/src.xml src/site/ src/site/resources/ src/site/resources/images/ src/site/site.xml

Author: niallp
Date: Fri Nov 16 05:03:03 2007
New Revision: 595651

URL: http://svn.apache.org/viewvc?rev=595651&view=rev
Log:
Add m2 build

Added:
    commons/proper/net/trunk/pom.xml   (with props)
    commons/proper/net/trunk/src/assembly/
    commons/proper/net/trunk/src/assembly/bin.xml   (with props)
    commons/proper/net/trunk/src/assembly/src.xml   (with props)
    commons/proper/net/trunk/src/site/
    commons/proper/net/trunk/src/site/resources/
    commons/proper/net/trunk/src/site/resources/images/
      - copied from r595528, commons/proper/net/trunk/xdocs/images/
    commons/proper/net/trunk/src/site/site.xml   (with props)

Added: commons/proper/net/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/pom.xml?rev=595651&view=auto
==============================================================================
--- commons/proper/net/trunk/pom.xml (added)
+++ commons/proper/net/trunk/pom.xml Fri Nov 16 05:03:03 2007
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-parent</artifactId>
+        <version>5</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>commons-net</groupId>
+    <artifactId>commons-net</artifactId>
+    <version>1.5.0-SNAPSHOT</version>
+    <name>Commons Net</name>
+    <description>
+        A collection of network utilities and protocol implementations.
+    </description>
+    <url>http://commons.apache.org/net/</url>
+    <issueManagement>
+        <system>jira</system>
+        <url>http://issues.apache.org/jira/browse/NET</url>
+    </issueManagement>
+    <inceptionYear>1997</inceptionYear>
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/net/trunk/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/net/trunk/</developerConnection>
+        <url>http://svn.apache.org/viewvc/commons/proper/net/trunk/</url>
+    </scm>
+
+    <developers>
+        <developer>
+            <name>Jeffrey D. Brekke</name>
+            <id>brekke</id>
+            <email>Jeff.Brekke@qg.com</email>
+            <organization>Quad/Graphics, Inc.</organization>
+        </developer>
+        <developer>
+            <name>Steve Cohen</name>
+            <id>scohen</id>
+            <email>scohen@apache.org</email>
+            <organization>javactivity.org</organization>
+        </developer>
+        <developer>
+            <name>Bruno D'Avanzo</name>
+            <id>brudav</id>
+            <email>bruno.davanzo@hp.com</email>
+            <organization>Hewlett-Packard</organization>
+        </developer>
+        <developer>
+            <name>Daniel F. Savarese</name>
+            <id>dfs</id>
+            <email>dfs -> apache.org</email>
+            <organization>
+            &lt;a href="http://www.savarese.com/"&gt;Savarese Software Research&lt;/a&gt;
+            </organization>
+        </developer>
+        <developer>
+            <name>Rory Winston</name>
+            <id>rwinston</id>
+            <email>rwinston@apache.org</email>
+            <organization></organization>
+        </developer>
+    </developers>
+
+    <contributors>
+        <contributor>
+            <name>Rob Hasselbaum</name>
+            <email>rhasselbaum -> alumni.ithaca.edu</email>
+        </contributor>
+        <contributor>
+            <name>Mario Ivankovits</name>
+            <email>mario@ops.co.at</email>
+        </contributor>
+        <contributor>
+            <name>Tapan Karecha</name>
+            <email>tapan@india.hp.com</email>
+        </contributor>
+        <contributor>
+            <name>Winston Ojeda</name>
+            <email>Winston.Ojeda@qg.com</email>
+            <organization>Quad/Graphics, Inc.</organization>
+        </contributor>
+        <contributor>
+            <name>Ted Wise</name>
+            <email>ctwise@bellsouth.net</email>
+        </contributor>
+    </contributors>
+
+    <dependencies>
+        <dependency>
+            <groupId>oro</groupId>
+            <artifactId>oro</artifactId>
+            <version>2.0.8</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>${basedir}</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>NOTICE.txt</include>
+                    <include>LICENSE.txt</include>
+                </includes>
+             </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*FunctionalTest.java</exclude>
+                        <exclude>**/*POP3*.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <descriptors>
+                        <descriptor>src/assembly/bin.xml</descriptor>
+                        <descriptor>src/assembly/src.xml</descriptor>
+                    </descriptors>
+                    <tarLongFileMode>gnu</tarLongFileMode>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <configuration>
+                    <xmlPath>xdocs/changes.xml</xmlPath>
+                    <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>changes-report</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>

Propchange: commons/proper/net/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/net/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/net/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/assembly/bin.xml?rev=595651&view=auto
==============================================================================
--- commons/proper/net/trunk/src/assembly/bin.xml (added)
+++ commons/proper/net/trunk/src/assembly/bin.xml Fri Nov 16 05:03:03 2007
@@ -0,0 +1,43 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/site/apidocs</directory>
+            <outputDirectory>apidocs</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/proper/net/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/net/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/net/trunk/src/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/assembly/src.xml?rev=595651&view=auto
==============================================================================
--- commons/proper/net/trunk/src/assembly/src.xml (added)
+++ commons/proper/net/trunk/src/assembly/src.xml Fri Nov 16 05:03:03 2007
@@ -0,0 +1,47 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<assembly>
+    <id>src</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>${artifactId}-${version}-src</baseDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>build.xml</include>
+                <include>LICENSE.txt</include>
+                <include>maven.xml</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>project.properties</include>
+                <include>project.xml</include>
+                <include>README</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>proposal</directory>
+        </fileSet>
+        <fileSet>
+            <directory>src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>xdocs</directory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/proper/net/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/net/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/net/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/site/site.xml?rev=595651&view=auto
==============================================================================
--- commons/proper/net/trunk/src/site/site.xml (added)
+++ commons/proper/net/trunk/src/site/site.xml Fri Nov 16 05:03:03 2007
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project name="Net">
+    <bannerRight>
+        <name>Commons Net</name>
+        <src>/images/net-logo-white.png</src>
+        <href>/index.html</href>
+    </bannerRight>
+
+    <body>
+        <menu name="Net">
+            <item name="Overview"              href="/index.html"/>
+            <item name="Migration How-to"      href="/migration.html"/>
+            <item name="FAQ"                   href="/faq.html"/>
+            <item name="Download"              href="/download.html"/>
+            <item name="Release Notes"         href="/changes-report.html"/>
+        </menu>
+
+        <menu name="Development">
+            <item name="To-Do List"            href="/tasks.html"/>
+            <item name="Coding Specifications" href="/code-standards.html"/>
+            <item name="Mailing Lists"         href="/mail-lists.html"/>
+            <item name="Issue Tracking"        href="/issue-tracking.html"/>
+            <item name="Source Repository"     href="/source-repository.html"/>
+            <item name="Javadoc (SVN latest)"  href="apidocs/index.html"/>
+        </menu>
+
+    </body>
+
+</project>

Propchange: commons/proper/net/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/net/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL