Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91135534
build.xml
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 8, 06:44
Size
1 KB
Mime Type
text/xml
Expires
Sun, Nov 10, 06:44 (2 d)
Engine
blob
Format
Raw Data
Handle
22203251
Attached To
rTOPOTEI topoTEI
build.xml
View Options
<?xml version="1.0" encoding="UTF-8"?>
<project
default=
"all"
name=
"exist_test"
>
<description>
My amazing exist_test application
</description>
<xmlproperty
file=
"expath-pkg.xml"
/>
<property
name=
"project.version"
value=
"
${
package
(
version
)}
"
/>
<property
name=
"project.app"
value=
"exist_test"
/>
<property
name=
"build.dir"
value=
"build"
/>
<!-- Start it -->
<target
name=
"init"
description=
"create build directory"
>
<tstamp/>
<mkdir
dir=
"
${
build
.
dir
}
"
/>
<copy
file=
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
todir=
"resources/scripts"
/>
<copy
file=
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map"
todir=
"resources/scripts"
/>
<copy
file=
"node_modules/bootstrap/dist/css/bootstrap.min.css"
todir=
"resources/css"
/>
<copy
file=
"node_modules/bootstrap/dist/css/bootstrap.min.css.map"
todir=
"resources/css"
/>
</target>
<!-- Dev build (includes everything unoptimized) -->
<target
name=
"dev"
depends=
"init"
description=
"compile all source files"
>
<zip
basedir=
"."
destfile=
"
${
build
.
dir
}
/
${
project
.
app
}
-
${
project
.
version
}
-dev.xar"
excludes=
"**/
${
build
.
dir
}
/**, **/node_modules/**"
/>
</target>
<!-- Release build -->
<target
name=
"deploy"
depends=
"init"
description=
"compile release build"
>
<zip
basedir=
"."
destfile=
"
${
build
.
dir
}
/
${
project
.
app
}
-
${
project
.
version
}
.xar"
excludes=
"**/
${
build
.
dir
}
/**, .existdb.json, .yo-rc.json, **/node_modules/**, **/reports/** "
/>
</target>
<target
name=
"all"
depends=
"dev, deploy"
>
<tstamp/>
</target>
</project>
Event Timeline
Log In to Comment