You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ng...@apache.org on 2008/04/30 14:14:08 UTC

svn commit: r652357 - /mina/ftpserver/trunk/distribution/pom.xml

Author: ngn
Date: Wed Apr 30 05:14:08 2008
New Revision: 652357

URL: http://svn.apache.org/viewvc?rev=652357&view=rev
Log:
Fixing our broken distribution project. For now the download of the site is disabled, we need to recreate the cron script that packaged it.

Modified:
    mina/ftpserver/trunk/distribution/pom.xml

Modified: mina/ftpserver/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/mina/ftpserver/trunk/distribution/pom.xml?rev=652357&r1=652356&r2=652357&view=diff
==============================================================================
--- mina/ftpserver/trunk/distribution/pom.xml (original)
+++ mina/ftpserver/trunk/distribution/pom.xml Wed Apr 30 05:14:08 2008
@@ -11,9 +11,9 @@
   <name>Apache FtpServer</name>
   <version>1.0.0-SNAPSHOT</version>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/mina/sandbox/ftpserver/trunk/distribution</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/mina/sandbox/ftpserver/trunk/distribution</developerConnection>
-    <url>http://svn.apache.org/viewvc/mina/sandbox/ftpserver/trunk/distribution</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/mina/ftpserver/trunk/distribution</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/mina/ftpserver/trunk/distribution</developerConnection>
+    <url>http://svn.apache.org/viewvc/mina/ftpserver/trunk/distribution</url>
   </scm>
   <build>
     <plugins>
@@ -47,8 +47,10 @@
               <tasks>
                 <echo>Downloading Manual</echo>
                 <mkdir dir="${project.build.directory}/site"></mkdir>
-                <get src="http://incubator.apache.org/ftpserver/ftpserver.zip" dest="${project.build.directory}/${pom.artifactId}-site.zip"></get>
+                <!--  
+                <get src="http://mina.apache.org/ftpserver/ftpserver.zip" dest="${project.build.directory}/${pom.artifactId}-site.zip"></get>
                 <unzip src="${project.build.directory}/${pom.artifactId}-site.zip" dest="${project.build.directory}/site"></unzip>
+                 -->
               </tasks>
             </configuration>
           </execution>
@@ -93,17 +95,22 @@
     <dependency>
       <groupId>org.apache.ftpserver</groupId>
       <artifactId>ftplet-api</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.ftpserver</groupId>
       <artifactId>ftpserver-core</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.ftpserver</groupId>
-      <artifactId>ftpserver-admin-gui</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
+      <artifactId>ftpserver-server</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
     </dependency>
   </dependencies>
   
@@ -159,11 +166,11 @@
                   <goal>unpack</goal>
                 </goals>
                 <configuration>
-                  <outputDirectory>${project.build.directory}/api/ftpserver-admin-gui</outputDirectory>
+                  <outputDirectory>${project.build.directory}/api/ftpserver-server</outputDirectory>
                   <artifactItems>
                     <artifactItem>
                       <groupId>${pom.groupId}</groupId>
-                      <artifactId>ftpserver-admin-gui</artifactId>
+                      <artifactId>ftpserver-server</artifactId>
                       <classifier>javadoc</classifier>
                       <version>${pom.version}</version>
                     </artifactItem>
@@ -176,23 +183,4 @@
       </build>
     </profile>
   </profiles>
-  
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>dependencies</report>
-              <report>mailing-list</report>
-              <report>issue-tracking</report>
-              <report>license</report>
-              <report>scm</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
-    </plugins>
-  </reporting>
 </project>