Fixing sandbox for source control code and removing it from the build.xml
This commit is contained in:
parent
d27733f690
commit
bead9b8b4a
4 changed files with 33 additions and 29 deletions
15
build.xml
15
build.xml
|
@ -54,20 +54,6 @@
|
||||||
<include name="Symfony/Components/**"/>
|
<include name="Symfony/Components/**"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
|
|
||||||
<!--
|
|
||||||
Fileset for the Doctrine ORM tools + sandbox.
|
|
||||||
-->
|
|
||||||
<fileset id="orm-tools" dir=".">
|
|
||||||
<include name="tools/sandbox/Entities"/>
|
|
||||||
<include name="tools/sandbox/xml"/>
|
|
||||||
<include name="tools/sandbox/yaml"/>
|
|
||||||
<include name="tools/sandbox/cli-config.php"/>
|
|
||||||
<include name="tools/sandbox/config.php"/>
|
|
||||||
<include name="tools/sandbox/doctrine"/>
|
|
||||||
<include name="tools/sandbox/doctrine.php"/>
|
|
||||||
<include name="tools/sandbox/index.php"/>
|
|
||||||
</fileset>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Clean the directory for the next build.
|
Clean the directory for the next build.
|
||||||
-->
|
-->
|
||||||
|
@ -100,7 +86,6 @@
|
||||||
<target name="build-orm" depends="test">
|
<target name="build-orm" depends="test">
|
||||||
<copy todir="${build.dir}/orm">
|
<copy todir="${build.dir}/orm">
|
||||||
<fileset refid="shared-artifacts"/>
|
<fileset refid="shared-artifacts"/>
|
||||||
<fileset refid="orm-tools"/>
|
|
||||||
</copy>
|
</copy>
|
||||||
<copy todir="${build.dir}/orm">
|
<copy todir="${build.dir}/orm">
|
||||||
<fileset refid="common-sources"/>
|
<fileset refid="common-sources"/>
|
||||||
|
|
|
@ -1,10 +1,17 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once __DIR__ . '/../../lib/Doctrine/Common/ClassLoader.php';
|
require_once '../../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
|
||||||
|
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\ORM', realpath(__DIR__ . '/../../lib'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\DBAL', realpath(__DIR__ . '/../../lib/vendor/doctrine-dbal/lib'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\Common', realpath(__DIR__ . '/../../lib/vendor/doctrine-common/lib'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', realpath(__DIR__ . '/../../lib/vendor'));
|
||||||
|
$classLoader->register();
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Entities', __DIR__);
|
$classLoader = new \Doctrine\Common\ClassLoader('Entities', __DIR__);
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require __DIR__ . '/../../lib/Doctrine/Common/ClassLoader.php';
|
require_once '../../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
|
||||||
|
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', __DIR__ . '/../../lib');
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\ORM', realpath(__DIR__ . '/../../lib'));
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\DBAL', realpath(__DIR__ . '/../../lib/vendor/doctrine-dbal/lib'));
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . '/../../lib/vendor');
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\\Common', realpath(__DIR__ . '/../../lib/vendor/doctrine-common/lib'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', realpath(__DIR__ . '/../../lib/vendor'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Entities', __DIR__);
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
// Variable $helperSet is defined inside cli-config.php
|
// Variable $helperSet is defined inside cli-config.php
|
||||||
|
|
|
@ -15,16 +15,22 @@ use Doctrine\Common\ClassLoader,
|
||||||
Doctrine\Common\Cache\ApcCache,
|
Doctrine\Common\Cache\ApcCache,
|
||||||
Entities\User, Entities\Address;
|
Entities\User, Entities\Address;
|
||||||
|
|
||||||
require '../../lib/Doctrine/Common/ClassLoader.php';
|
require_once '../../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
|
||||||
|
|
||||||
// Set up class loading. You could use different autoloaders, provided by your favorite framework,
|
// Set up class loading. You could use different autoloaders, provided by your favorite framework,
|
||||||
// if you want to.
|
// if you want to.
|
||||||
$doctrineClassLoader = new ClassLoader('Doctrine', realpath(__DIR__ . '/../../lib'));
|
$classLoader = new ClassLoader('Doctrine\\ORM', realpath(__DIR__ . '/../../lib'));
|
||||||
$doctrineClassLoader->register();
|
$classLoader->register();
|
||||||
$entitiesClassLoader = new ClassLoader('Entities', __DIR__);
|
$classLoader = new ClassLoader('Doctrine\\DBAL', realpath(__DIR__ . '/../../lib/vendor/doctrine-dbal/lib'));
|
||||||
$entitiesClassLoader->register();
|
$classLoader->register();
|
||||||
$proxiesClassLoader = new ClassLoader('Proxies', __DIR__);
|
$classLoader = new ClassLoader('Doctrine\\Common', realpath(__DIR__ . '/../../lib/vendor/doctrine-common/lib'));
|
||||||
$proxiesClassLoader->register();
|
$classLoader->register();
|
||||||
|
$classLoader = new ClassLoader('Symfony', realpath(__DIR__ . '/../../lib/vendor'));
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new ClassLoader('Entities', __DIR__);
|
||||||
|
$classLoader->register();
|
||||||
|
$classLoader = new ClassLoader('Proxies', __DIR__);
|
||||||
|
$classLoader->register();
|
||||||
|
|
||||||
// Set up caches
|
// Set up caches
|
||||||
$config = new Configuration;
|
$config = new Configuration;
|
||||||
|
@ -54,4 +60,3 @@ $user = new User;
|
||||||
$address = new Address;
|
$address = new Address;
|
||||||
|
|
||||||
echo 'Hello World!' . PHP_EOL;
|
echo 'Hello World!' . PHP_EOL;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue