git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@378933 13f79535-47bb-0310-9956-ffa450edef68
182 lines
5.6 KiB
Properties
182 lines
5.6 KiB
Properties
# -------------------------------------------------------------------
|
|
# Copyright 2001-2006 The Apache Software Foundation.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# -------------------------------------------------------------------
|
|
|
|
#====================================================================
|
|
# WARNING: All these properties are inherited by the plugin projects
|
|
#====================================================================
|
|
|
|
#=====
|
|
# Repositories settings
|
|
#=====
|
|
|
|
# TODO: remove cvs repository, just there for SNAPSHOTs
|
|
maven.repo.remote = http://www.ibiblio.org/maven,http://cvs.apache.org/repository/
|
|
|
|
# Repository to deploy to
|
|
maven.repo.list=apache.snapshots
|
|
|
|
maven.repo.apache.releases=scp://${pom.distributionSite}
|
|
maven.repo.apache.releases.directory=${pom.distributionDirectory}
|
|
maven.repo.apache.releases.group=maven
|
|
# These must be set elsewhere
|
|
#maven.repo.apache.releases.username=
|
|
#maven.repo.apache.releases.privatekey=
|
|
#maven.repo.apache.releases.passphrase=
|
|
|
|
# Repository to deploy snapshots
|
|
maven.repo.apache.snapshots=scp://cvs.apache.org
|
|
maven.repo.apache.snapshots.directory=/www/cvs.apache.org/repository
|
|
maven.repo.apache.snapshots.username=${maven.repo.apache.releases.username}
|
|
maven.repo.apache.snapshots.privatekey=${maven.repo.apache.releases.privatekey}
|
|
maven.repo.apache.snapshots.passphrase=${maven.repo.apache.releases.passphrase}
|
|
maven.repo.apache.snapshots.group=${maven.repo.apache.releases.group}
|
|
|
|
#=====
|
|
# Dependencies overriding
|
|
#=====
|
|
|
|
# Override versions of dependencies defined in maven core
|
|
# The maven's classloader doesn't allow plugins to use
|
|
# a different version of dependencies loaded by the core.
|
|
maven.jar.override = on
|
|
# Set dependencies versions from maven 1.1 core
|
|
maven.jar.ant=1.6.5
|
|
maven.jar.ant-junit=1.6.5
|
|
maven.jar.ant-launcher=1.6.5
|
|
maven.jar.ant-trax=1.6.5
|
|
maven.jar.commons-beanutils=1.6.1
|
|
maven.jar.commons-cli=1.0-beta-2
|
|
maven.jar.commons-codec=1.2
|
|
maven.jar.commons-collections=3.0
|
|
maven.jar.commons-httpclient=3.0
|
|
maven.jar.commons-io=1.0
|
|
maven.jar.commons-jelly=1.0
|
|
maven.jar.commons-jelly-tags-ant=1.1
|
|
maven.jar.commons-jelly-tags-define=1.0
|
|
maven.jar.commons-jelly-tags-util=1.1.1
|
|
maven.jar.commons-jelly-tags-xml=1.1
|
|
maven.jar.commons-jexl=1.0
|
|
maven.jar.commons-lang=2.0
|
|
maven.jar.commons-logging=1.0.4
|
|
maven.jar.dom4j=1.4
|
|
maven.jar.forehead=1.0-beta-5
|
|
maven.jar.log4j=1.2.12
|
|
maven.jar.maven-model=3.0.1
|
|
maven.jar.plexus-utils=1.0.3
|
|
maven.jar.wagon-file=1.0-alpha-4
|
|
maven.jar.wagon-http=1.0-alpha-3
|
|
maven.jar.wagon-provider-api=1.0-alpha-3
|
|
|
|
maven.jar.maven = ${maven.home}/lib/maven.jar
|
|
|
|
#=====
|
|
# Compilation options
|
|
#=====
|
|
# We are targetting the 1.3 JVM and above
|
|
maven.compile.target=1.3
|
|
maven.compile.source=1.3
|
|
maven.compile.encoding=UTF-8
|
|
|
|
#=====
|
|
# Announcement plugin properties
|
|
#=====
|
|
maven.announcement.distributionUrl=http://www.apache.org/dyn/closer.cgi/java-repository/maven/plugins
|
|
maven.announcement.mail.to = users@maven.apache.org,dev@maven.apache.org,announce@maven.apache.org
|
|
maven.announcement.lenient=true
|
|
|
|
#=====
|
|
# Artifact plugin settings
|
|
#=====
|
|
# Force artifact deployment. You must setup your environment appropriately
|
|
maven.artifact.legacy=false
|
|
|
|
#=====
|
|
# Changelog plugin properties
|
|
#=====
|
|
maven.changelog.svn.baseurl=http://svn.apache.org/viewcvs.cgi
|
|
maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
|
|
maven.changelog.type=date
|
|
maven.changelog.date=lastRelease
|
|
|
|
#=====
|
|
# Changes plugin settings
|
|
#=====
|
|
# Changes issue template
|
|
maven.changes.issue.template = %URL%/%ISSUE%
|
|
|
|
#=====
|
|
# Checkstyle plugin settings
|
|
#=====
|
|
maven.checkstyle.header.file = ${basedir}/../plugins-parent/checkstyle-license.txt
|
|
maven.checkstyle.properties = ${basedir}/../plugins-parent/checkstyle.xml
|
|
|
|
#=====
|
|
# Javadoc plugin settings
|
|
#=====
|
|
maven.javadoc.links = http://java.sun.com/j2se/1.4.2/docs/api/
|
|
|
|
#=====
|
|
# License plugin settings
|
|
#=====
|
|
maven.license.licenseFile=${basedir}/../plugins-parent/LICENSE.txt
|
|
|
|
#=====
|
|
# LinkCheck plugin settings
|
|
#=====
|
|
maven.linkcheck.exclude=${pom.repository.url},${maven.changelog.svn.baseurl}
|
|
|
|
#=====
|
|
# MultiProject plugin settings
|
|
#=====
|
|
maven.multiproject.type=plugin
|
|
|
|
#=====
|
|
# PDF plugin settings
|
|
#=====
|
|
# Use the jpg image for the organization's logo
|
|
maven.pdf.companyLogo=http://maven.apache.org/images/apache-maven-project.jpg
|
|
|
|
#=====
|
|
# SCM plugin settings
|
|
#=====
|
|
# TODO: derive from SCM URL
|
|
maven.scm.svn.tag.base=https://svn.apache.org/repos/asf/maven/maven-1/plugins/tags
|
|
maven.scm.checkout.dir=${maven.build.dir}/scm/checkout
|
|
|
|
#=====
|
|
# Site plugin settings
|
|
#=====
|
|
maven.site.stage.address=people.apache.org
|
|
maven.site.stage.directory=/home/${maven.username}/public_html/maven-stage-site/${pom.siteDirectory.substring(22)}
|
|
maven.site.deploy.method=rsync
|
|
|
|
#=====
|
|
# Test/JUnit plugin settings
|
|
#=====
|
|
# Fork so that plugins unit tests are run with the correct classpath
|
|
maven.junit.fork = true
|
|
|
|
#=====
|
|
# XDOC plugin settings
|
|
#=====
|
|
# Display the date on the Maven web site
|
|
maven.xdoc.date = bottom
|
|
maven.xdoc.date.format = dd MMMM yyyy HH:mm z
|
|
maven.xdoc.distributionUrl=http://www.apache.org/dyn/closer.cgi/java-repository/maven/plugins
|
|
maven.xdoc.version = ${pom.currentVersion}
|
|
# Use the maven site theme
|
|
maven.xdoc.theme.url=http://maven.apache.org/maven-1.x/style/maven-stylus.css
|
|
maven.xdoc.locale.default=en |