-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
37 lines (29 loc) · 1.2 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0"?>
<!--~
~ @project sortbyfield
~ @license GPLv3
~ @copyright Copyright (c) 2021-2024 Nicholas K. Dionysopoulos
-->
<project name="SortByFields" description="SortByFields" default="git" >
<import file="${phing.dir}/../buildfiles/phing/common.xml" />
<!--
====================================================================================================
Build customization
====================================================================================================
-->
<target name="package-pkg" description="Installation package" depends="new-release, setup-properties, package-plugins">
<!-- Dependencies are enough -->
</target>
<!--
Internal builder task to build one plugin installation package at a time
-->
<target name="package-plugin-item" description="Package a single plugin">
<echo message="Packaging plugin ${plugin_area}/${plugin_name}" />
<property name="plugin_package" value="${dirs.release}/plg_${plugin_area}_${plugin_name}-${version}.zip" />
<zipme basedir="${plugin_dir}" destfile="${plugin_package}" includeemptydirs="true">
<fileset dir="${plugin_dir}">
<include name="**" />
</fileset>
</zipme>
</target>
</project>