Ignore:
Timestamp:
11/06/14 13:58:49 (10 years ago)
Author:
Twan Goosen
Message:

added development build profile that causes app to log to console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/trunk/ComponentRegistry/pom.xml

    r5553 r5781  
    3737        <hibernate.version>3.6.10.Final</hibernate.version>
    3838        <spring-data-jpa.version>1.3.4.RELEASE</spring-data-jpa.version>
     39        <logging.appender>FILE</logging.appender>
     40        <logging.level>warn</logging.level>
    3941    </properties>
    4042
     
    328330
    329331    <profiles>
     332        <profile>
     333            <!-- development profile that directs logging output to the console -->
     334            <id>development</id>
     335            <properties>
     336                <logging.level>debug</logging.level>
     337                <logging.appender>CONSOLE</logging.appender>
     338                <serviceRootUrl>http://localhost:8080/ComponentRegistry</serviceRootUrl>
     339                <!-- Will be inserted in context.xml -->
     340                <shibLI>http://lux16.mpi.nl/Shibboleth.sso/Login</shibLI>
     341                <!-- Shibboleth login URI for SHHAA -->
     342                <shibLO>http://lux16.mpi.nl/Shibboleth.sso/Logout</shibLO>
     343                <!-- Shibboleth logout URI for SHHAA -->
     344                <webXmlPath>src/main/webapp/WEB-INF/web-shib.xml</webXmlPath>
     345                <!-- web.xml for shibboleth authentication -->
     346            </properties>
     347        </profile>
    330348        <profile>
    331349            <id>lux16</id>
Note: See TracChangeset for help on using the changeset viewer.