# # # Build properties file for CSCI E-162 assignments # # Name of the app. NOTE: Ensure that the names for the war, module name, # context root, etc., in both application.xml and sun-j2ee-ri.xml line # up with this name. The case of the property given for app.name should # match exactly references in the config/*.xml files. # # TODO: Use a filter to fix names in application.xml, etc.? # app.name = DSCheck # Assignment number assignment.number = 3 # Your name in LastFM format developer.name = Name # Set the following properties if you want Struts, JSTL and/or Axis. If you do # not want support for Axis, Struts or JSTL, *comment out* the feature (setting # the value to "no" won't work!). #includeStruts = yes #includeJSTL = no #includeAxis = no includeTapestry = yes # If you are using auto-generated client stubs for a web service, specify the URL of the # service's WSDL description by setting the following property #wsdl.url = http://localhost:8080/tachyon/services/basicSolver?wsdl #wsdl.url = http://cscie162.dce.harvard.edu:8080/collab-tachyon/services/collabSolver?wsdl # Server to which app should be deployed # deploy.target should be sun-j2ee-ri or jboss # deploy.servername is the hostname for the deploy target # deploy.serverport is the port the server listens on deploy.target = tomcat deploy.servername = localhost deploy.serverport = 8080 manager.url = http://${deploy.servername}:${deploy.serverport}/manager tomcat.admin.username = admin tomcat.admin.password = password # Location of standard project directories java.src = src/java java.test = src/test java.classes = classes dist = dist config = config web = web generated = generated # Tapestry related libraries tapestry.jar = ${env.OTS}/Tapestry-3.0/lib/tapestry-3.0.jar tapestry_contrib.jar = ${env.OTS}/Tapestry-3.0/lib/tapestry-contrib-3.0.jar tapestry_tld = ${env.OTS}/Tapestry-3.0/lib/tapestry-3.0.tld # Location of supporting libraries xerces.jar = ${env.OTS}/xerces-2_6_1/xercesImpl.jar servlet.jar = ${env.CATALINA_HOME}/common/lib/servlet.jar j2ee.jar = ${env.JBOSS_HOME}/server/default/lib/jboss-j2ee.jar jaxp.jar = ${env.OTS}/xerces-2_6_1/xml-apis.jar parserapi.jar = ${env.OTS}/xerces-2_6_1/xmlParserAPIs.jar jstl_core.jar = ${env.OTS}/jakarta-taglibs-standard-1.0.4/lib/jstl.jar jstl_standard.jar = ${env.OTS}/jakarta-taglibs-standard-1.0.4/lib/standard.jar junit.jar = ${env.OTS}/junit3.8.1/junit.jar ant_contrib.jar = ${env.OTS}/apache-ant-1.6.1/lib/ant-contrib-1.0b1.jar # Following are all Struts-related struts.jar = ${env.OTS}/jakarta-struts-1.1/lib/struts.jar struts-commons-digester.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-digester.jar struts-commons-logging.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-logging.jar struts-commons-beanutils.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-beanutils.jar struts-commons-collections.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-collections.jar struts-commons-lang.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-lang.jar struts-commons-validator.jar = ${env.OTS}/jakarta-struts-1.1/lib/commons-validator.jar struts-jakarta-oro.jar = ${env.OTS}/jakarta-struts-1.1/lib/jakarta-oro.jar # The following are all Axis-related axis.base.dir = ${env.OTS}/axis-1_1/lib axis.jar = ${axis.base.dir}/axis.jar axis-jaxrpc.jar = ${axis.base.dir}/jaxrpc.jar axis-saaj.jar = ${axis.base.dir}/saaj.jar axis-wsdl4j.jar = ${axis.base.dir}/wsdl4j.jar axis-logging.jar = ${axis.base.dir}/commons-logging.jar axis-discovery.jar = ${axis.base.dir}/commons-discovery.jar # Define a jar, driver, and url for jdbc (if your driver requires as an additional # jar, as does Cloudscape, define it as jdbc_extra.tar) # # SQL Server setup jdbc.jar = ${env.OTS}/SQLServerJDBC/lib/mssqlserver.jar; jdbc_extra.jar = ${env.OTS}/SQLServerJDBC/lib/msbase.jar; jdbc_lib = ${env.OTS}/SQLServerJDBC/lib; jdbc_driver = com.microsoft.jdbc.sqlserver.SQLServerDriver; jdbc_url = jdbc:microsoft:sqlserver://localhost:1433 jdbc_userid = sa jdbc_password = sql2003dba # Example of Cloudscape setup # #jdbc.jar = ${env.J2EE_HOME}/lib/system/cloudscape.jar #jdbc_extra.jar = ${env.J2EE_HOME}/lib/cloudscape/RmiJdbc.jar #jdbc_driver = COM.cloudscape.core.RmiJdbcDriver #jdbc_url = jdbc:cloudscape:rmi:CloudscapeDB;create=true #jdbc_userid = #jdbc_password = # Example of MySQL setup #jdbc.jar = ${env.OTS}/mysql-connector-java-3.0.9-stable/mysql-connector-java-3.0.9-stable-bin.jar #jdbc_extra.jar = #jdbc_driver = com.mysql.jdbc.Driver #jdbc_url = jdbc:mysql://localhost/taskmaster #jdbc_userid = j2ee #jdbc_password = j2ee