|
From: <fle...@us...> - 2007-04-11 14:38:20
|
Revision: 647
http://svn.sourceforge.net/magicmap/?rev=647&view=rev
Author: flederohr
Date: 2007-04-11 07:37:55 -0700 (Wed, 11 Apr 2007)
Log Message:
-----------
compile project with Java 1.5 compatibility
Modified Paths:
--------------
trunk/magicmapclient/MagicMapSetup.nsi
trunk/magicmapclient/build.xml
trunk/magicmapserver/build.xml
Modified: trunk/magicmapclient/MagicMapSetup.nsi
===================================================================
--- trunk/magicmapclient/MagicMapSetup.nsi 2007-04-02 13:46:38 UTC (rev 646)
+++ trunk/magicmapclient/MagicMapSetup.nsi 2007-04-11 14:37:55 UTC (rev 647)
@@ -7,7 +7,7 @@
# Defines
!define REGKEY "SOFTWARE\$(^Name)"
-!define VERSION 0.8.1
+!define VERSION 0.9.0
!define COMPANY "Humboldt Universit\xE4t zu Berlin"
!define URL http://www2.informatik.hu-berlin.de/rok/MagicMap
@@ -69,6 +69,8 @@
File MagicMap.ico
File magicmap.jar
File LICENSE.txt
+ SetOutPath $INSTDIR\plugins
+ File /r /x .svn plugins\*
SetOutPath $INSTDIR\lib
File /r /x .svn lib\*
File ..\magicmapserver\dist\magicmap-server.jar
Modified: trunk/magicmapclient/build.xml
===================================================================
--- trunk/magicmapclient/build.xml 2007-04-02 13:46:38 UTC (rev 646)
+++ trunk/magicmapclient/build.xml 2007-04-11 14:37:55 UTC (rev 647)
@@ -94,7 +94,7 @@
</target>
<target name="compile" depends="axis">
- <javac destdir="${build}" debug="true" deprecation="true" debuglevel="lines,vars,source" fork="true">
+ <javac destdir="${build}" target="1.5" debug="true" deprecation="true" debuglevel="lines,vars,source" fork="true">
<classpath refid="build.classpath" />
<src path="${src}" />
<src path="${src.gen}" />
Modified: trunk/magicmapserver/build.xml
===================================================================
--- trunk/magicmapserver/build.xml 2007-04-02 13:46:38 UTC (rev 646)
+++ trunk/magicmapserver/build.xml 2007-04-11 14:37:55 UTC (rev 647)
@@ -32,6 +32,7 @@
<target name="compile" depends="prepare">
<javac destdir="${build}"
+ target="1.5"
debug="true"
deprecation="true"
debuglevel="lines,vars,source"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|