Author: nextgens
Date: 2006-02-22 15:41:52 +0000 (Wed, 22 Feb 2006)
New Revision: 8108
Modified:
trunk/plugins/TestGallery/TestGallery.java
trunk/plugins/build.xml
Log:
Hopefully it will work
Modified: trunk/plugins/TestGallery/TestGallery.java
===================================================================
--- trunk/plugins/TestGallery/TestGallery.java 2006-02-22 13:59:36 UTC (rev
8107)
+++ trunk/plugins/TestGallery/TestGallery.java 2006-02-22 15:41:52 UTC (rev
8108)
@@ -1,11 +1,9 @@
-package freenet.plugin;
-
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Date;
import java.util.Random;
-import freenet.pluginmanager;
+import freenet.pluginmanager.*;
import freenet.client.FetchException;
import freenet.client.FetchResult;
import freenet.client.HighLevelSimpleClient;
Modified: trunk/plugins/build.xml
===================================================================
--- trunk/plugins/build.xml 2006-02-22 13:59:36 UTC (rev 8107)
+++ trunk/plugins/build.xml 2006-02-22 15:41:52 UTC (rev 8108)
@@ -2,8 +2,7 @@
<!-- ant build file for Freenet -->
<project name="Freenet" default="dist" basedir=".">
- <loadfile property="freenet-cvs-snapshot.name"
srcFile="/var/www/downloads/alpha/.latest"/>
- <property name="freenet-cvs-snapshot.location"
location="/var/www/downloads/alpha/${freenet-cvs-snapshot.name}"/>
+ <property name="freenet-cvs-snapshot.location"
location="/home/nextgens/freenet-alpha.jar"/>
<property name="freenet-ext.location"
location="/var/www/downloads/alpha/freenet-ext.jar"/>
<property name="build" location="build/"/>
<property name="dist" location="dist/"/>
@@ -22,13 +21,12 @@
<!-- Create the build directory structure used by compile -->
<!-- FIXME: remove the debug and replace with optimize -->
- <javac srcdir="${what}" destdir="${build}" debug="on" optimize="on"
source="1.4">
- <classpath>
- <pathelement location="${freenet-ext.location}"/>
- <pathelement location="${freenet-cvs-snapshot.location}"/>
- </classpath>
-<!-- following a very temporary list of files to be build -->
- <include name="**/*.java"/>
+ <javac srcdir="${what}/" destdir="${build}" debug="on" optimize="on"
source="1.4">
+ <classpath>
+ <pathelement location="${freenet-ext.location}"/>
+ <pathelement location="${freenet-cvs-snapshot.location}"/>
+ </classpath>
+ <include name="**/*.java"/>
</javac>
</target>
@@ -36,9 +34,6 @@
<!-- ================================================== -->
<target name="dist" depends="clean,compile"
description="generate the distribution" >
- <!-- Create the distribution directory -->
- <!--<mkdir dir="."/>-->
- <!-- Put everything in ${build} into the freenet-${DSTAMP}.jar file -->
<jar jarfile="${dist}/${what}.jar" basedir="${build}"/>
</target>