Installing Petals Master

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (38)

View Page History
\\
The default dragon.properties file is (NB : here, we have disable the MySQL configuration and enable the H2 configuration, Indexation is set in memory mode) :
{code:actionscript}
############
### Datasource properties
## In Memory H2 Datasource
jdbc.driverClassName = org.h2.Driver
jdbc.url = {color:#0000ff}jdbc:h2:mem:dragon{color} jdbc:h2:mem:dragon
jdbc.username = {color:#0000ff}sa{color} sa
jdbc.password = {color:#0000ff}sa{color} sa
jdbc.hibernate.dialect = {color:#0000ff}org.hibernate.dialect.H2Dialect{color} org.hibernate.dialect.H2Dialect
jdbc.hibernate.hbm2ddl.auto = {color:#0000ff}update{color} update
jdbc.hibernate.show_sql = {color:#0000ff}false{color} false

{color:#339966}\## ## In Memory HSQL Datasource{color}
{color:#339966}\#jdbc.driverClassName = org.hsqldb.jdbcDriver{color}
{color:#339966}\#jdbc.url = jdbc:hsqldb:mem:dragon{color}
{color:#339966}\#jdbc.username = sa{color}
{color:#339966}\#jdbc.password ={color}
{color:#339966}\#jdbc.hibernate.dialect = org.hibernate.dialect.HSQLDialect{color}
{color:#339966}\#jdbc.hibernate.hbm2ddl.auto = update{color}
{color:#339966}\#jdbc.hibernate.show_sql = false{color}
{color:#339966}\#jdbc.url =jdbc:hsqldb:{color}{color:#339966}[file:c:/hsqldb/dragon]{color}
#jdbc.driverClassName = org.hsqldb.jdbcDriver
#jdbc.url = jdbc:hsqldb:mem:dragon
#jdbc.username = sa
#jdbc.password =
#jdbc.hibernate.dialect = org.hibernate.dialect.HSQLDialect
#jdbc.hibernate.hbm2ddl.auto = update
#jdbc.hibernate.show_sql = false
#jdbc.url =jdbc:hsqldb:file:c:/hsqldb/dragon

{color:#339966}\###########{color} ###########
{color:#339966}\### Indexation properties (Compass/Lucene){color}
### Indexation properties (Compass/Lucene)
{color:#339966}\###########{color} ###########

{color:#339966}\## ## Index path{color}
compass.index.url = {color:#0000ff}ram://compass{color} ram://compass
{color:#339966}\#compass.index.url ={color} {color:#339966}[file:///c:/compass]{color}
{color:#339966}\# compass.index.url ={color} {color:#339966}[file:///home/compass]{color}
#compass.index.url = file:///c:/compass
# compass.index.url = file:///home/compass

{color:#339966}\## Full default analyser{color}
{color:#339966}\#compass.engine.analyzer.default.type = snowball{color}
{color:#339966}\#compass.engine.analyzer.default.name = English{color}
## Full default analyser
#compass.engine.analyzer.default.type = snowball
#compass.engine.analyzer.default.name = English
compass.engine.analyzer.default.type = {color:#0000ff}standard{color} standard
compass.engine.analyzer.default.name = {color:#0000ff}English{color} English

{color:#339966}\##########{color} ##########
{color:#339966}\### Log{color}
### Log
{color:#339966}\##########{color} ##########
{color:#339966}\#log.root.path = C:/Projets/SOA4All{color}
#log.root.path = C:/Projets/SOA4All

{color:#339966}\##########{color} ##########
{color:#339966}\### Repository{color}
### Repository
{color:#339966}\##########{color} ##########
{color:#339966}\## ## A Database repository configuration. All binary files are stored as DB Blobs{color}
repo.type = {color:#0000ff}database{color} database
repo.root = {color:#0000ff}null{color} null
{color:#339966}\## ## A Filesystem repository configuration. All binary files are stored in the filesystem{color}
{color:#339966}\#repo.type = filesystem{color}
{color:#339966}\#repo.root = ./test-repository{color}
#repo.type = filesystem
#repo.root = ./test-repository
{code}