| | 393 | |
|---|
| | 394 | <!-- ================================================================= |
|---|
| | 395 | If this is a struts app the following gets executed. |
|---|
| | 396 | We create an updated struts-config.xml file and add some jars. |
|---|
| | 397 | ================================================================= --> |
|---|
| | 398 | |
|---|
| | 399 | <target name="spring-stuff"> |
|---|
| | 400 | <copy todir="${app.dest.webinf}"> |
|---|
| | 401 | <fileset dir="${app.sou.dir}/war/WEB-INF"> |
|---|
| | 402 | <include name="*-servlet.xml"/> |
|---|
| | 403 | </fileset> |
|---|
| | 404 | </copy> |
|---|
| | 405 | |
|---|
| | 406 | <mkdir dir="${app.dest.webinf}/tlds"/> |
|---|
| | 407 | <copy todir="${app.dest.webinf}/tlds" > |
|---|
| | 408 | <fileset dir="${resources.dir}/spring/tlds"> |
|---|
| | 409 | <include name="*"/> |
|---|
| | 410 | </fileset> |
|---|
| | 411 | </copy> |
|---|
| | 412 | </target> |
|---|