diff --git a/build/build-cloud.xml b/build/build-cloud.xml index b11abe57254..ccea6bd8138 100755 --- a/build/build-cloud.xml +++ b/build/build-cloud.xml @@ -101,7 +101,7 @@ - + @@ -137,7 +137,7 @@ - + @@ -176,7 +176,7 @@ - + @@ -223,7 +223,6 @@ - @@ -237,11 +236,15 @@ - + + + + + @@ -252,45 +255,45 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - @@ -304,12 +307,12 @@ - + - - - - + + + + @@ -343,7 +346,7 @@ - + @@ -517,20 +520,20 @@ - - - + + + - - - - - - - - - - + + + + + + + + + + @@ -562,8 +565,8 @@ - - + + diff --git a/build/build.number b/build/build.number deleted file mode 100644 index 77edd644e70..00000000000 --- a/build/build.number +++ /dev/null @@ -1,3 +0,0 @@ -#Build Number for ANT. Do not edit! -#Fri Aug 20 13:33:49 PDT 2010 -build.number=80 diff --git a/build/package.xml b/build/package.xml index a8995cd2349..82781c61a2f 100755 --- a/build/package.xml +++ b/build/package.xml @@ -135,7 +135,7 @@ - + diff --git a/ui/resources/resource.properties b/client/WEB-INF/classes/resources/resource.properties similarity index 100% rename from ui/resources/resource.properties rename to client/WEB-INF/classes/resources/resource.properties diff --git a/ui/resources/resource_zh.properties b/client/WEB-INF/classes/resources/resource_zh.properties similarity index 100% rename from ui/resources/resource_zh.properties rename to client/WEB-INF/classes/resources/resource_zh.properties diff --git a/wscript_configure b/wscript_configure index 5185f87fbf2..a7111b847cc 100644 --- a/wscript_configure +++ b/wscript_configure @@ -232,10 +232,13 @@ conf.env.USAGECLASSPATH = pathsep.join(usageclasspath) # 1. source directories (without including the JARs) # JARs are not included because in case of parallel compilation (IOW, all the time), javac picks up half-written JARs and die compilecp = []# list(srcdirs) -# 2.a) the thirdparty/ directory in the source if on Windows / Mac # 2.b) the deps/ directory in the source if on Linux -if conf.env.DISTRO in ["Windows","Mac"]: compilecp+= _glob(_join("cloudstack-proprietary","thirdparty","*.jar")) -else: compilecp+= _glob(_join("deps","*.jar")) +# 2.a) the thirdparty/ directory if available +if conf.env.DISTRO in ["Windows","Mac"]: + pass +else: + compilecp+= _glob(_join("deps","*.jar")) +compilecp+= _glob(_join("cloudstack-proprietary","thirdparty","*.jar")) # 3. the system classpath (system-installed JARs) compilecp+= [ conf.env.SYSTEMCLASSPATH ] compilecp+= _glob(_join(conf.env.TOMCATHOME,'bin',"*.jar"))