Subversion Repositories SmartDukaan

Rev

Rev 328 | Rev 337 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 328 Rev 332
Line 38... Line 38...
38
		        <pathelement location="${thirdparty.location}/readonly/apache/ezmorph/ezmorph-1.0.3.jar"/>
38
		        <pathelement location="${thirdparty.location}/readonly/apache/ezmorph/ezmorph-1.0.3.jar"/>
39
		        <pathelement location="${thirdparty.location}/readonly/apache/json/json-lib-2.1-jdk15.jar"/>
39
		        <pathelement location="${thirdparty.location}/readonly/apache/json/json-lib-2.1-jdk15.jar"/>
40
		        <pathelement location="${thirdparty.location}/readonly/apache/ognl/ognl-2.7.3.jar"/>
40
		        <pathelement location="${thirdparty.location}/readonly/apache/ognl/ognl-2.7.3.jar"/>
41
		        <pathelement location="${thirdparty.location}/readonly/apache/xpp/xpp3_min-1.1.3.4.O.jar"/>
41
		        <pathelement location="${thirdparty.location}/readonly/apache/xpp/xpp3_min-1.1.3.4.O.jar"/>
42
		        <pathelement location="${thirdparty.location}/readonly/apache/commons-digester-2.0/commons-digester-2.0.jar"/>
42
		        <pathelement location="${thirdparty.location}/readonly/apache/commons-digester-2.0/commons-digester-2.0.jar"/>
-
 
43
		    	<pathelement location="${thirdparty.location}/readonly/apache/thrift-0.2.0/libthrift.jar"/>
-
 
44
		    	<pathelement location="${thirdparty.location}/readonly/slf4j/slf4j-api-1.5.8.jar"/>
-
 
45
		    	<pathelement location="${thirdparty.location}/readonly/slf4j/slf4j-simple-1.5.8.jar"/>
43
		    	<pathelement location="${thirdparty.location}/ContentModel.jar"/>
46
		    	<pathelement location="${thirdparty.location}/ContentModel.jar"/>
44
    </path>
47
    </path>
45
		
48
		
46
	
49
	
47
	<target name="main" depends="clean, compile, compress">
50
	<target name="main" depends="clean, compile, compress">
Line 149... Line 152...
149
		<copy file="../lib/readonly/apache/json/json-lib-2.1-jdk15.jar" 
152
		<copy file="../lib/readonly/apache/json/json-lib-2.1-jdk15.jar" 
150
		            tofile="build/WEB-INF/lib/json-lib-2.1-jdk15.jar"/>
153
		            tofile="build/WEB-INF/lib/json-lib-2.1-jdk15.jar"/>
151
		
154
		
152
        <copy file="../lib/readonly/apache/struts-2.1.8.1/xstream-1.2.2.jar" 
155
        <copy file="../lib/readonly/apache/struts-2.1.8.1/xstream-1.2.2.jar" 
153
            tofile="build/WEB-INF/lib/xstream-1.2.2.jar"/>
156
            tofile="build/WEB-INF/lib/xstream-1.2.2.jar"/>
-
 
157
		
-
 
158
		<copy file="../lib/readonly/apache/thrift-0.2.0/libthrift.jar" 
154
                      
159
		            tofile="build/WEB-INF/lib/libthrift.jar"/>
-
 
160
		
-
 
161
		<copy file="../lib/readonly/slf4j/slf4j-api-1.5.8.jar" 
-
 
162
				            tofile="build/WEB-INF/lib/slf4j-api-1.5.8.jar"/>
-
 
163
		
-
 
164
		<copy file="../lib/readonly/slf4j/slf4j-simple-1.5.8.jar" 
-
 
165
						            tofile="build/WEB-INF/lib/slf4j-simple-1.5.8.jar"/>
-
 
166
		
-
 
167
		
155
		<copy todir="build/WEB-INF/classes">
168
		<copy todir="build/WEB-INF/classes">
156
			<fileset dir="bin">
169
			<fileset dir="bin">
157
				<include name="**/*.class"/>
170
				<include name="**/*.class"/>
158
			</fileset>
171
			</fileset>
159
		</copy>
172
		</copy>
160
	
173
	
161
        <copy file="../lib/ContentModel.jar" 
174
        <copy file="../lib/ContentStore.jar" 
162
			tofile="build/WEB-INF/lib/ContentModel.jar"/>
175
			tofile="build/WEB-INF/lib/ContentStore.jar"/>
-
 
176
		
-
 
177
		<copy file="../lib/Common.jar" 
-
 
178
					tofile="build/WEB-INF/lib/Common.jar"/>
-
 
179
		
-
 
180
		<copy file="../lib/ThriftConfig.jar" 
-
 
181
							tofile="build/WEB-INF/lib/ThriftConfig.jar"/>
163
		
182
		
164
		<war 
183
		<war 
165
			destfile="ContentCreation.war" 
184
			destfile="ContentCreation.war" 
166
			basedir="build"/>
185
			basedir="build"/>
167
        
186
        
168
		<copy file="build/WEB-INF/lib/ContentModel.jar" 
187
		<copy file="ContentCreation.war" 
169
			tofile="../lib/ContentCreation.war"/>
188
			tofile="../lib/ContentCreation.war"/>
170
 
189
 
171
        </target>
190
        </target>
172
 
191
 
173
	
192