Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
c89d0e63
Commit
c89d0e63
authored
Jun 14, 2009
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Started Doctrine 2 phing build file.
parent
10439800
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
0 deletions
+94
-0
build.properties.dev
build.properties.dev
+3
-0
build.xml
build.xml
+91
-0
No files found.
build.properties.dev
0 → 100644
View file @
c89d0e63
version=2.0
build.dir=build
dist.dir=dir
\ No newline at end of file
build.xml
0 → 100644
View file @
c89d0e63
<?xml version="1.0"?>
<!--
Doctrine 2 build file.
-->
<project
name=
"Doctrine2"
default=
"dist-all"
basedir=
"."
>
<property
file=
"build.properties"
/>
<fileset
id=
"shared-artifacts"
dir=
"."
>
<include
name=
"LICENSE"
/>
<include
name=
"COPYRIGHT"
/>
<include
name=
"CHANGELOG"
/>
</fileset>
<fileset
id=
"common-sources"
dir=
"."
>
<include
name=
"lib/Doctrine/Common/**"
/>
</fileset>
<fileset
id=
"dbal-sources"
dir=
"."
>
<include
name=
"lib/Doctrine/DBAL/**"
/>
</fileset>
<fileset
id=
"orm-sources"
dir=
"."
>
<include
name=
"lib/Doctrine/ORM/**"
/>
</fileset>
<target
name=
"clean"
>
<delete
dir=
"${build.dir}"
includeemptydirs=
"true"
/>
<delete
dir=
"${dist.dir}"
includeemptydirs=
"true"
/>
</target>
<target
name=
"prepare"
depends=
"clean"
>
<echo
msg=
"Creating build directory: build"
/>
<mkdir
dir=
"${build.dir}"
/>
<echo
msg=
"Creating distribution directory: dist"
/>
<mkdir
dir=
"${dist.dir}"
/>
</target>
<target
name=
"build-common"
>
<copy
todir=
"build/common"
>
<fileset
refid=
"shared-artifacts"
/>
<fileset
refid=
"common-sources"
/>
</copy>
</target>
<target
name=
"build-dbal"
>
<copy
todir=
"build/dbal"
>
<fileset
refid=
"shared-artifacts"
/>
<fileset
refid=
"common-sources"
/>
<fileset
refid=
"dbal-sources"
/>
</copy>
</target>
<target
name=
"build-all"
depends=
"prepare, build-common, build-dbal"
>
<copy
todir=
"build/all"
>
<fileset
refid=
"shared-artifacts"
/>
<fileset
refid=
"common-sources"
/>
<fileset
refid=
"dbal-sources"
/>
<fileset
refid=
"orm-sources"
/>
</copy>
</target>
<target
name=
"dist-common"
>
<tar
destfile=
"./dist/Doctrine2-common.tar.gz"
compression=
"gzip"
>
<fileset
dir=
"./build/common"
>
<include
name=
"**"
/>
</fileset>
</tar>
</target>
<target
name=
"dist-dbal"
>
<tar
destfile=
"./dist/Doctrine2-dbal.tar.gz"
compression=
"gzip"
>
<fileset
dir=
"./build/dbal"
>
<include
name=
"**"
/>
</fileset>
</tar>
</target>
<target
name=
"dist-all"
depends=
"build-all, dist-common, dist-dbal"
>
<tar
destfile=
"./dist/Doctrine2-all.tar.gz"
compression=
"gzip"
>
<fileset
dir=
"./build/all"
>
<include
name=
"**"
/>
</fileset>
</tar>
</target>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment