forked from BroadleafCommerce/LegacyDemoSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
36 lines (28 loc) · 1.27 KB
/
build.properties
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
########
#The following file is used to define runtime properties that will read by ant tasks.
#if you need to override any of them,
#then create a file in your home directory called .build.properties that contains only the override properties.
#########
#required
maven.home=/usr/share/maven
#optional
jrebel.path=/usr/lib/jrebel/jrebel.jar
#optional for build-create-sql and build-update-sql ant tasks
ant.hibernate.sql.ddl.dialect=org.hibernate.dialect.HSQLDialect
#The following allow the build-update-sql ant task to connect to a database and generate DDL to
#update the schema
ant.blPU.url=jdbc:hsqldb:hsql://localhost/broadleaf
ant.blPU.userName=sa
ant.blPU.password=null
ant.blPU.driverClassName=org.hsqldb.jdbcDriver
ant.blSecurePU.url=jdbc:hsqldb:hsql://localhost/broadleaf
ant.blSecurePU.userName=sa
ant.blSecurePU.password=null
ant.blSecurePU.driverClassName=org.hsqldb.jdbcDriver
ant.blCMSStorage.url=jdbc:hsqldb:hsql://localhost/broadleaf
ant.blCMSStorage.userName=sa
ant.blCMSStorage.password=null
ant.blCMSStorage.driverClassName=org.hsqldb.jdbcDriver
#optional - only required if you wish for the build-create-sql and build-update-sql tasks to include weaved items from modules
spring.instrument.path=/path/to/your/spring/instrument/jar
#End build-*-sql Ant Task Properties