-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
47 lines (41 loc) · 1.47 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
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<!--~
~ @package contactus
~ @copyright Copyright (c)2013-2024 Nicholas K. Dionysopoulos / Akeeba Ltd
~ @license GNU General Public License version 3, or later
-->
<!--
ContactUs build file for Phing
written by Nicholas K. Dionysopoulos
Run "phing" from the build directory to build the component and plugins
-->
<project name="ContactUsDemoComponent" description="ContactUs F0F Demo Component" default="all" >
<import file="${phing.dir}/../buildfiles/phing/common.xml" />
<!--
====================================================================================================
File sets
====================================================================================================
-->
<fileset dir="${dirs.component}" id="component" expandsymboliclinks="true">
<include name="backend/**" />
<include name="frontend/**" />
<include name="language/**" />
<include name="media/**" />
<exclude name="backend/contactus.xml" />
<include name="LICENSE.txt" />
<include name="script.com_contactus.php" />
<include name="*.xml" />
</fileset>
<fileset dir="${dirs.release}" id="package">
<include name="com_*.zip" />
<include name="file_fef*.zip" />
<include name="file_*.zip" />
<include name="mod_*.zip" />
<include name="plg_*.zip" />
<include name="lib_*.zip" />
<include name="pkg_*.xml" />
<include name="language/**"/>
<include name="*.txt" />
<include name="script.contactus.php" />
</fileset>
</project>