Skip to content
Snippets Groups Projects
Commit 09bb588b authored by felmer's avatar felmer
Browse files

LMS-2612 target 'copy-dss-core-plugins' extracted

SVN: 24547
parent 445b6d2d
No related branches found
No related tags found
No related merge requests found
...@@ -98,16 +98,22 @@ ...@@ -98,16 +98,22 @@
<target name="make-plugin-dist"> <target name="make-plugin-dist">
<move file="${plugin-jar.file}" tofile="${dist.plugin.lib}/datastore_server_plugin${variant}.jar" /> <move file="${plugin-jar.file}" tofile="${dist.plugin.lib}/datastore_server_plugin${variant}.jar" />
<copy todir="${dist.plugin}/core-plugins"> <antcall target="copy-dss-core-plugins">
<fileset dir="${core-plugins.folder}" erroronmissingdir="false"> <param name="project-path" value="" />
<include name="*/*/dss/**/*"/> </antcall>
</fileset>
</copy>
<property name="dist.file" <property name="dist.file"
value="${dist}/datastore_server_plugin${variant}-${version.number}-r${revision.number}.zip" /> value="${dist}/datastore_server_plugin${variant}-${version.number}-r${revision.number}.zip" />
<zip basedir="${dist.plugin}" destfile="${dist.file}" excludes="*.zip *.jar"/> <zip basedir="${dist.plugin}" destfile="${dist.file}" excludes="*.zip *.jar"/>
<delete dir="${dist.plugin}"/> <delete dir="${dist.plugin}"/>
</target> </target>
<target name="copy-dss-core-plugins">
<copy todir="${dist.plugin}/core-plugins">
<fileset dir="${project-path}${core-plugins.folder}" erroronmissingdir="false">
<include name="*/*/dss/**/*"/>
</fileset>
</copy>
</target>
<target name="dist"> <target name="dist">
<antcall target="make-dist"> <antcall target="make-dist">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment