Skip to content

Commit

Permalink
LPS-55630 Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed May 19, 2015
1 parent 2f7263c commit f4854f8
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions build-common-java.xml
Expand Up @@ -31,7 +31,7 @@
<attribute default="project.classpath" name="javac.classpathref" />
<attribute default="classes" name="javac.destdir" />
<attribute default="src" name="javac.srcdir" />
<element name="post-compile" optional="true" />
<element name="compile-java-post" optional="true" />

<sequential>
<if>
Expand Down Expand Up @@ -86,7 +86,7 @@
</then>
</if>

<post-compile />
<compile-java-post />

<echo file="@{javac.destdir}/.touch"></echo>
</then>
Expand All @@ -101,8 +101,8 @@
</macrodef>

<macrodef name="jar-marco-cmd">
<element name="pre-jar" optional="true" />
<element name="post-jar" optional="true" />
<element name="jar-pre" optional="true" />
<element name="jar-post" optional="true" />

<sequential>
<if>
Expand All @@ -114,7 +114,7 @@
<then>
<compile-java />

<pre-jar />
<jar-pre />

<if>
<available file="bnd.bnd" />
Expand Down Expand Up @@ -152,7 +152,7 @@
</else>
</if>

<post-jar />
<jar-post />
</then>
</if>
</sequential>
Expand Down
4 changes: 2 additions & 2 deletions portal-impl/build.xml
Expand Up @@ -27,7 +27,7 @@
<macrodef name="jar-marco">
<sequential>
<jar-marco-cmd>
<pre-jar>
<jar-pre>
<ant dir="../util-bridges" target="jar" inheritAll="false" />
<ant dir="../util-java" target="jar" inheritAll="false" />
<ant dir="../util-taglib" target="jar" inheritAll="false" />
Expand Down Expand Up @@ -61,7 +61,7 @@
</if>
</sequential>
</for>
</pre-jar>
</jar-pre>
</jar-marco-cmd>
</sequential>
</macrodef>
Expand Down
4 changes: 2 additions & 2 deletions util-bridges/build.xml
Expand Up @@ -26,10 +26,10 @@
<macrodef name="jar-marco">
<sequential>
<jar-marco-cmd>
<post-jar>
<jar-post>
<copy file="${jar.file}.jar" todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true" />
<copy file="${project.dir}/lib/portal/portals-bridges.jar" todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true" />
</post-jar>
</jar-post>
</jar-marco-cmd>
</sequential>
</macrodef>
Expand Down
4 changes: 2 additions & 2 deletions util-java/build.xml
Expand Up @@ -11,9 +11,9 @@
<macrodef name="jar-marco">
<sequential>
<jar-marco-cmd>
<post-jar>
<jar-post>
<copy file="${jar.file}.jar" todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true" />
</post-jar>
</jar-post>
</jar-marco-cmd>
</sequential>
</macrodef>
Expand Down
4 changes: 2 additions & 2 deletions util-slf4j/build.xml
Expand Up @@ -12,9 +12,9 @@
<macrodef name="jar-marco">
<sequential>
<jar-marco-cmd>
<post-jar>
<jar-post>
<copy file="${jar.file}.jar" todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true" />
</post-jar>
</jar-post>
</jar-marco-cmd>
</sequential>
</macrodef>
Expand Down
8 changes: 4 additions & 4 deletions util-taglib/build.xml
Expand Up @@ -10,7 +10,7 @@
<macrodef name="compile-java">
<sequential>
<compile-java-cmd>
<post-compile>
<compile-java-post>
<copy file="classes/META-INF/aui.tld" overwrite="true" tofile="classes/META-INF/liferay-aui.tld" preservelastmodified="true" />

<replace file="classes/META-INF/liferay-aui.tld">
Expand All @@ -36,15 +36,15 @@
<replacetoken><![CDATA[<uri>http://java.sun.com/portlet</uri>]]></replacetoken>
<replacevalue><![CDATA[<uri>http://java.sun.com/portlet_2_0</uri>]]></replacevalue>
</replace>
</post-compile>
</compile-java-post>
</compile-java-cmd>
</sequential>
</macrodef>

<macrodef name="jar-marco">
<sequential>
<jar-marco-cmd>
<post-jar>
<jar-post>
<copy file="${jar.file}.jar" todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true" />

<copy todir="${portal-impl.classes.dir}/com/liferay/portal/deploy/dependencies" preservelastmodified="true">
Expand All @@ -56,7 +56,7 @@
<copy overwrite="true" todir="${project.dir}/portal-web/docroot/WEB-INF/tld" preservelastmodified="true">
<fileset dir="classes/META-INF" includes="*.tld" />
</copy>
</post-jar>
</jar-post>
</jar-marco-cmd>
</sequential>
</macrodef>
Expand Down

0 comments on commit f4854f8

Please sign in to comment.