Revision 8acfa6b5

b/.classpath
18 18
			<attribute name="javadoc_location" value="http://commons.apache.org/configuration/apidocs/"/>
19 19
		</attributes>
20 20
	</classpathentry>
21
	<classpathentry kind="lib" path="lib/gwt-gears.jar"/>
22 21
	<classpathentry kind="lib" path="ear/lib/commons-httpclient-3.1.jar"/>
23
	<classpathentry kind="lib" path="lib/gwt-dnd-3.0.1.jar"/>
24 22
	<classpathentry kind="lib" path="ear/lib/ldap.jar"/>
25 23
	<classpathentry kind="lib" path="ear/lib/commons-codec-1.4.jar">
26 24
		<attributes>
27 25
			<attribute name="javadoc_location" value="http://commons.apache.org/codec/api-release/"/>
28 26
		</attributes>
29 27
	</classpathentry>
30
	<classpathentry kind="lib" path="lib/gwt-incubator-20100204-r1747.jar"/>
31
	<classpathentry kind="lib" path="lib/gwt-visualization.jar"/>
32 28
	<classpathentry kind="lib" path="dependencies/gwt-2.0.4/gwt-user.jar"/>
33 29
	<classpathentry kind="lib" path="dependencies/junit3.8.1/junit.jar"/>
34 30
	<classpathentry kind="lib" path="dependencies/jboss-5.1.0.GA/lib/concurrent.jar"/>
......
182 178
	<classpathentry kind="lib" path="dependencies/jboss-5.1.0.GA/common/lib/slf4j-api.jar"/>
183 179
	<classpathentry kind="lib" path="dependencies/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar"/>
184 180
	<classpathentry kind="lib" path="dependencies/jboss-5.1.0.GA/common/lib/xnio-api.jar"/>
181
	<classpathentry kind="lib" path="dependencies/gwt-dnd-3.0.1.jar"/>
182
	<classpathentry kind="lib" path="dependencies/gwt-incubator-20100204-r1747.jar"/>
183
	<classpathentry kind="lib" path="dependencies/gwt-gears-1.3.0/gwt-gears.jar"/>
184
	<classpathentry kind="lib" path="dependencies/gwt-visualization-1.1.0/gwt-visualization.jar"/>
185 185
	<classpathentry kind="output" path="bin"/>
186 186
</classpath>
b/COPYING
728 728
    http://www.apache.org/licenses/LICENSE-2.0
729 729
  Source code availability: http://commons.apache.org/codec/
730 730

  
731
* gwt-dnd
732
  License: Apache License v. 2.0
733
    http://www.apache.org/licenses/LICENSE-2.0
734
  Source code availability: http://code.google.com/p/gwt-dnd/
735

  
736 731
* JavaScript SHA-1
737 732
  License: BSD license
738 733
    http://pajhome.org.uk/site/legal.html#bsdlicense
......
748 743
    http://www.apache.org/licenses/LICENSE-2.0
749 744
  Source code availability: http://gwt-widget.sourceforge.net/docs/xref/org/gwtwidgets/client/ui/ProgressBar.html
750 745

  
751
* gwt-google-apis
752
  License: Apache License v. 2.0
753
    http://www.apache.org/licenses/LICENSE-2.0
754
  Source code availability: http://code.google.com/p/gwt-google-apis/
755

  
756 746
* JavaScript SHA-1
757 747
  License: Creative Commons Attribution 3.0 License
758 748
    http://creativecommons.org/licenses/by/3.0/
b/README.txt
15 15
   - The Commons IO library (http://commons.apache.org/io/)
16 16
   - The Commons Lang library (http://commons.apache.org/lang/)
17 17
   - The WebDAV implementation in Tomcat (http://tomcat.apache.org/) with modifications
18
 - The gwt-dnd project (http://code.google.com/p/gwt-dnd/)
19 18
 - The JavaScript MD5 project (http://pajhome.org.uk/crypt/md5)
20 19
 - The GWT Widget project (http://gwt-widget.sourceforge.net/)
21
 - The gwt-google-apis project (http://code.google.com/p/gwt-google-apis/)
22 20
 - The Lytebox project (http://www.dolem.com/lytebox/)
23 21
 - The OpenLDAP project (http://www.openldap.org/jldap/)
24 22
 
b/build.xml
26 26
    <property name="junit.path" value="${deps.dir}/junit3.8.1" />
27 27
    <property name="junit.filename" value="junit3.8.1.zip"/>
28 28
    <property name="junit.download.url" value="http://sourceforge.net/projects/junit/files/junit/3.8.1/junit3.8.1.zip/download"/>
29
    <property name="gwt-dnd.filename" value="gwt-dnd-3.0.1.jar"/>
30
    <property name="gwt-dnd.download.url" value="http://gwt-dnd.googlecode.com/files/gwt-dnd-3.0.1.jar"/>
31
    <property name="gwt-gears.path" value="${deps.dir}/gwt-gears-1.3.0" />
32
    <property name="gwt-gears.filename" value="gwt-gears-1.3.0.zip"/>
33
    <property name="gwt-gears.download.url" value="http://gwt-google-apis.googlecode.com/files/gwt-gears-1.3.0.zip"/>
34
    <property name="gwt-visualization.path" value="${deps.dir}/gwt-visualization-1.1.0" />
35
    <property name="gwt-visualization.filename" value="gwt-visualization-1.1.0.zip"/>
36
    <property name="gwt-visualization.download.url" value="http://gwt-google-apis.googlecode.com/files/gwt-visualization-1.1.0.zip"/>
37
    <property name="gwt-incubator.filename" value="gwt-incubator-20100204-r1747.jar"/>
38
    <property name="gwt-incubator.download.url" value="http://google-web-toolkit-incubator.googlecode.com/files/gwt-incubator-20100204-r1747.jar"/>
29 39

  
30 40
	<!-- Source and runtime layout configuration -->
31 41
	<property name="jboss_run_configuration" value="default" />
......
103 113
		<pathelement location="${ear.lib.dir}/commons-lang.jar"/>
104 114
		<pathelement location="${ear.lib.dir}/ldap.jar"/>
105 115
		<pathelement location="${junit.path}/junit.jar"/>
106
		<pathelement location="${basedir}/lib/gwt-dnd-3.0.1.jar"/>
107
		<pathelement location="${basedir}/lib/gwt-gears.jar"/>
108
		<pathelement location="${basedir}/lib/gwt-incubator-20100204-r1747.jar"/>
109
		<pathelement location="${basedir}/lib/gwt-visualization.jar"/>
116
		<pathelement location="${deps.dir}/${gwt-dnd.filename}"/>
117
		<pathelement location="${gwt-gears.path}/gwt-gears.jar"/>
118
		<pathelement location="${deps.dir}/${gwt-incubator.filename}"/>
119
		<pathelement location="${gwt-visualization.path}/gwt-visualization.jar"/>
110 120
	</path>
111 121

  
112 122
	<target name="check-jboss">
......
116 126
    <target name="fetch-dependencies" description="Fetch the dpendencies" unless="jboss.home.present" depends="check-jboss">
117 127
    	<mkdir dir="${deps.dir}"/>
118 128
        <get src="${gwt.download.url}" dest="${deps.dir}/${gwt.filename}" usetimestamp="true"/>
129
        <get src="${gwt-dnd.download.url}" dest="${deps.dir}/${gwt-dnd.filename}" usetimestamp="true"/>
130
        <get src="${gwt-gears.download.url}" dest="${deps.dir}/${gwt-gears.filename}" usetimestamp="true"/>
131
        <get src="${gwt-visualization.download.url}" dest="${deps.dir}/${gwt-visualization.filename}" usetimestamp="true"/>
132
        <get src="${gwt-incubator.download.url}" dest="${deps.dir}/${gwt-incubator.filename}" usetimestamp="true"/>
119 133
        <get src="${hornetq.download.url}" dest="${deps.dir}/${hornetq.filename}" usetimestamp="true"/>
120 134
        <get src="${junit.download.url}" dest="${deps.dir}/${junit.filename}" usetimestamp="true"/>
121 135
        <get src="${jboss.download.url}" dest="${deps.dir}/${jboss.filename}" usetimestamp="true"/>
122 136
    	<unzip src="${deps.dir}/${gwt.filename}" dest="${deps.dir}"/>
137
        <unzip src="${deps.dir}/${gwt-gears.filename}" dest="${deps.dir}"/>
138
        <unzip src="${deps.dir}/${gwt-visualization.filename}" dest="${deps.dir}"/>
123 139
        <unzip src="${deps.dir}/${hornetq.filename}" dest="${deps.dir}"/>
124 140
        <unzip src="${deps.dir}/${junit.filename}" dest="${deps.dir}"/>
125 141
        <unzip src="${deps.dir}/${jboss.filename}" dest="${jboss.home}/.."/>

Also available in: Unified diff