mirror of https://github.com/apache/maven.git
71 lines
2.8 KiB
Properties
71 lines
2.8 KiB
Properties
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you 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.
|
|
|
|
#=====
|
|
# Repositories settings
|
|
#=====
|
|
|
|
# TODO: remove http://people.apache.org/repo/m1-snapshot-repository/, just there for SNAPSHOTs
|
|
maven.repo.remote = http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository/,http://snapshots.dist.codehaus.org/modello/
|
|
|
|
# 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://people.apache.org
|
|
maven.repo.apache.snapshots.directory=/www/people.apache.org/repo/m1-snapshot-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}
|
|
|
|
# Compilation settings
|
|
maven.compile.source=1.4
|
|
maven.compile.target=1.4
|
|
|
|
# Modello settings
|
|
maven.modello.model=${basedir}/target/maven.mdo.m1
|
|
maven.modello.model.m2=${basedir}/src/main/mdo/maven.mdo
|
|
maven.modello.packageWithVersion=false
|
|
maven.modello.version=3.0.0
|
|
maven.modello.plugins=xpp3,stax,dom4j
|
|
|
|
# LinkCheck plugin settings
|
|
maven.linkcheck.exclude=${pom.repository.url},${maven.changelog.svn.baseurl}
|
|
|
|
# Site plugin settings
|
|
maven.site.stage.address=people.apache.org
|
|
maven.site.deploy.method=rsync
|
|
maven.site.stage.directory=${wwwroot}/staging-sites/maven-model/${pom.currentVersion}
|
|
wwwroot=/home/${maven.username}/public_html
|
|
|
|
# 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
|
|
# 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
|
|
maven.docs.src=${basedir}/src/site/xdoc |