Skip to content

Commit

Permalink
LEP-3515 Group geronimo fix with other app server fixes that are similar
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.liferay.com/repos/public/portal/trunk@8504 05bdf26c-840f-0410-9ced-eb539d925f36
  • Loading branch information
brianchandotcom committed Aug 15, 2007
1 parent 553af35 commit 10330ac
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
9 changes: 0 additions & 9 deletions build-common-web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,6 @@
</else>
</if>

<if>
<equals arg1="${app.server.type}" arg2="geronimo-tomcat" />
<then>
<copy todir="${war.file.dest}/WEB-INF/lib">
<fileset dir="${project.dir}/lib/development" includes="mail.jar,smtp.jar"/>
</copy>
</then>
</if>

<if>
<and>
<or>
Expand Down
12 changes: 12 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,18 @@
<fileset dir="lib/portal" />
</copy>

<if>
<equals arg1="${app.server.type}" arg2="geronimo-tomcat" />
<then>
<copy todir="${app.server.lib.portal.dir}">
<fileset
dir="lib/development"
includes="mail.jar,smtp.jar"
/>
</copy>
</then>
</if>

<if>
<or>
<equals arg1="${app.server.type}" arg2="jboss-jetty" />
Expand Down
9 changes: 0 additions & 9 deletions tools/ext_tmpl/build-common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,6 @@
<unwar src="${war.file}.war" dest="${war.file.dest}" />
</else>
</if>

<if>
<equals arg1="${app.server.type}" arg2="geronimo-tomcat" />
<then>
<copy todir="${war.file.dest}/WEB-INF/lib">
<fileset dir="${project.dir}/lib/development" includes="mail.jar,smtp.jar"/>
</copy>
</then>
</if>

<if>
<and>
Expand Down
11 changes: 11 additions & 0 deletions tools/ext_tmpl/build-parent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,17 @@
<fileset dir="lib/portal" />
</copy>

<if>
<equals arg1="${app.server.type}" arg2="geronimo-tomcat" />
<then>
<copy todir="${app.server.lib.portal.dir}">
<fileset
dir="lib/development"
includes="mail.jar,smtp.jar"
/>
</copy>
</then>
</if>

<if>
<or>
Expand Down

0 comments on commit 10330ac

Please sign in to comment.