Removed build.properties and replaced with instructions inside build.xml
This commit is contained in:
parent
39753a477f
commit
f5f92281e1
3 changed files with 5 additions and 25 deletions
|
@ -1,20 +0,0 @@
|
||||||
# Important!
|
|
||||||
# This file is just a template file.
|
|
||||||
# Do not add any usernames or passwords
|
|
||||||
# The build file looks for a file called working.build.properties
|
|
||||||
# Please make a copy named working.build.properties before filling out any values.
|
|
||||||
|
|
||||||
#Configure properties to access the Manager application user/pass combo should be in $TOMCAT_HOME/conf/tomcat-users.xml with manager role.
|
|
||||||
catalina.home=/usr/local/tomcat
|
|
||||||
catalina.base=/usr/local/tomcat
|
|
||||||
url=http://localhost:2020/manager
|
|
||||||
username=
|
|
||||||
password=
|
|
||||||
|
|
||||||
#provide location of working copy of lex-context-config.xml
|
|
||||||
lex.context.config=lex-context-config-working.xml
|
|
||||||
|
|
||||||
#These properties need to be set to run the unit tests. They are your login to the dictionary
|
|
||||||
lex.username=
|
|
||||||
lex.password=
|
|
||||||
jmeterhome=../jmeter
|
|
|
@ -6,13 +6,13 @@ log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
### direct messages to file hibernate.log ###
|
### direct messages to file hibernate.log ###
|
||||||
log4j.appender.file=org.apache.log4j.FileAppender
|
log4j.appender.file=org.apache.log4j.FileAppender
|
||||||
log4j.appender.file.File=/Users/travis/webapps/Dictionary/logs/hibernate.log
|
log4j.appender.file.File=/Users/travis/webapps/development/Dictionary/logs/hibernate.log
|
||||||
log4j.appender.file.layout=org.apache.log4j.PatternLayout
|
log4j.appender.file.layout=org.apache.log4j.PatternLayout
|
||||||
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
### direct messages to file lex.log ###
|
### direct messages to file lex.log ###
|
||||||
log4j.appender.lex-out=org.apache.log4j.FileAppender
|
log4j.appender.lex-out=org.apache.log4j.FileAppender
|
||||||
log4j.appender.lex-out.File=/Users/travis/webapps/Dictionary/logs/lex.log
|
log4j.appender.lex-out.File=/Users/travis/webapps/development/Dictionary/logs/lex.log
|
||||||
log4j.appender.lex-out.layout=org.apache.log4j.PatternLayout
|
log4j.appender.lex-out.layout=org.apache.log4j.PatternLayout
|
||||||
log4j.appender.lex-out.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
log4j.appender.lex-out.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ log4j.rootLogger=warn, stdout
|
||||||
|
|
||||||
log4j.logger.net.sf.hibernate=info, file
|
log4j.logger.net.sf.hibernate=info, file
|
||||||
|
|
||||||
log4j.logger.org.thdl.lex=debug, lex-out
|
log4j.logger.org.thdl.lex=info, lex-out
|
||||||
|
|
||||||
### enable the following line if you want to track down connection ###
|
### enable the following line if you want to track down connection ###
|
||||||
### leakages when using DriverManagerConnectionProvider ###
|
### leakages when using DriverManagerConnectionProvider ###
|
||||||
|
|
|
@ -266,7 +266,7 @@ public class LexSourceRepository
|
||||||
*/
|
*/
|
||||||
private LexSourceRepository() throws Exception
|
private LexSourceRepository() throws Exception
|
||||||
{
|
{
|
||||||
SimpleDataStore dataStore = new SimpleDataStore( "/Users/travis/webapps/lex/dlese-oai/scheduled-harvester", true );
|
/* SimpleDataStore dataStore = new SimpleDataStore( "/Users/travis/webapps/lex/dlese-oai/scheduled-harvester", true );
|
||||||
File initialHarvestDir = new File( "/Users/travis/webapps/lex/dlese-oai/datastore.lib.virginia.edu" );
|
File initialHarvestDir = new File( "/Users/travis/webapps/lex/dlese-oai/datastore.lib.virginia.edu" );
|
||||||
SimpleLuceneIndex harvestLogIndex = new SimpleLuceneIndex( "/Users/travis/webapps/lex/dlese-oai/lucene-index" );
|
SimpleLuceneIndex harvestLogIndex = new SimpleLuceneIndex( "/Users/travis/webapps/lex/dlese-oai/lucene-index" );
|
||||||
ScheduledHarvestManager manager = new ScheduledHarvestManager( dataStore, initialHarvestDir, harvestLogIndex );
|
ScheduledHarvestManager manager = new ScheduledHarvestManager( dataStore, initialHarvestDir, harvestLogIndex );
|
||||||
|
@ -284,7 +284,7 @@ public class LexSourceRepository
|
||||||
setHarvest( harvest );
|
setHarvest( harvest );
|
||||||
|
|
||||||
getHarvestManager().addScheduledHarvest( getHarvest() );
|
getHarvestManager().addScheduledHarvest( getHarvest() );
|
||||||
}
|
*/ }
|
||||||
//main
|
//main
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue