1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- # $Id$
- # Values in this file will be overriden by any values with the same name
- # in the user-created build.properties file.
- # Compile settings
- maven.compile.debug=on
- maven.compile.target=1.3
- maven.compile.source=1.3
- # Add this to a build.properties file
- #maven.username=your_sourceforge_username
- # If you'd like to have generated JARs signed, add these to build.properties
- #signature.alias=
- #signature.storepass=
- #signature.keystore=
- maven.javadoc.links=http://java.sun.com/j2se/1.4.2/docs/api/,http://www.springframework.org/docs/api/
- maven.repo.remote=http://www.ibiblio.org/maven,http://acegisecurity.sourceforge.net/maven
- # Site generation properties
- maven.xdoc.date = left
- maven.xdoc.version = ${pom.currentVersion}
- maven.xdoc.distributionUrl=http://sourceforge.net/project/showfiles.php?group_id=104215
- #maven.xdoc.distributionUrl=http://acegisecurity.sourceforge.net/maven/acegisecurity/jars
- maven.html2xdoc.enabled=true
- # Deploying site
- maven.remote.group=acegisecurity
- maven.site.deploy.method=ssh
- # Repository to deploy to
- maven.repo.list=acegi
- maven.repo.acegi=sftp://shell.sourceforge.net
- maven.repo.acegi.directory=/home/groups/a/ac/acegisecurity/htdocs/maven
- maven.repo.acegi.group=acegisecurity
- # These must be set elsewhere
- # Useful background: http://jira.codehaus.org/secure/attachment/13459/site-deployment.xml
- # List of applicable properties: http://maven.apache.org/reference/plugins/artifact/properties.html
- #maven.repo.acegi.username=
- #maven.repo.acegi.privatekey=
- #maven.repo.acegi.passphrase=
- #maven.ssh.executable=
- #maven.scp.executable=
- # clover-ant.jar overriding as maven-clover-plugin-1.6 uses clover-ant-1.3_01
- # which gives an "Invalid license: Invalid license file [E1202]"
- maven.jar.override=on
- #maven.jar.clover-ant=1.3.3_01
- maven.clover.excludes=**/*Exception.java
- maven.clover.context.statement.names=nolog
- maven.clover.context.statement.regexps=^if \(logger.*\).*}
- # Clover open source license for Acegi Security (kindly provided by Cenqua)
- maven.clover.license.path=${rootdir}/lib/clover/clover.license
- # License plugin settings
- maven.license.licenseFile=${rootdir}/LICENSE.txt
- # multiproject
- maven.multiproject.basedir=${rootdir}
- maven.multiproject.includes=core/project.xml,adapters/*/project.xml,samples/*/project.xml,domain/project.xml
- # multichanges
- maven.multichanges.basedir=${maven.multiproject.basedir}
- maven.multichanges.includes=${maven.multiproject.includes}
- # dashboard
- maven.dashboard.basedir=${maven.multiproject.basedir}
- maven.dashboard.includes=${maven.multiproject.includes}
- maven.dashboard.aggregators = cserrors,cswarnings,clovertpc,cloverloc,cloverncloc,junittests,junitfailures,juniterrors,junitpassrate,simiantdl
- maven.dashboard.rungoals=false
- maven.dashboard.runreactor=false
- maven.multiproject.site.goals=site,dashboard:report-single
- # needed to get clover reports running dashboard-single
- maven.clover.report.xml=true
|