mirror of https://github.com/apache/maven.git
o removing maven 1.x related files
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@742674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1da74993a9
commit
8ecae9a554
|
@ -1,50 +0,0 @@
|
||||||
<!--
|
|
||||||
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.
|
|
||||||
-->
|
|
||||||
<project xmlns:modello="modello" xmlns:ant="jelly:ant" xmlns:maven="jelly:maven" xmlns:j="jelly:core">
|
|
||||||
<goal name="customizeModello">
|
|
||||||
<j:if test="${not modelloGenerated}">
|
|
||||||
<!-- We need to have the generated code before to compile -->
|
|
||||||
<ant:copy tofile="${maven.modello.model}" file="${maven.modello.model.m2}"/>
|
|
||||||
<!-- We have to change the namespace before to generate the schema -->
|
|
||||||
<ant:replace file="${maven.modello.model}" token="http://maven.apache.org/POM/4.0.0" value="http://maven.apache.org/POM/3.0.0"/>
|
|
||||||
<attainGoal name="modello:modello"/>
|
|
||||||
<!-- Need the original package as well -->
|
|
||||||
<ant:copy tofile="${maven.modello.model}.2" file="${maven.modello.model}"/>
|
|
||||||
<ant:replace file="${maven.modello.model}.2" token="org.apache.maven.model" value="org.apache.maven.project"/>
|
|
||||||
<maven:set plugin="maven-modello-plugin" property="maven.modello.model" value="${maven.modello.model}.2"/>
|
|
||||||
<attainGoal name="modello:modello"/>
|
|
||||||
<j:set var="modelloGenerated" value="true" scope="parent"/>
|
|
||||||
</j:if>
|
|
||||||
</goal>
|
|
||||||
<!-- We need to have the generated code before to compile -->
|
|
||||||
<preGoal name="java:compile">
|
|
||||||
<attainGoal name="customizeModello"/>
|
|
||||||
</preGoal>
|
|
||||||
<!-- We need to have the generated code before to compute the javadoc and to register the modello report -->
|
|
||||||
<preGoal name="xdoc:register-reports">
|
|
||||||
<attainGoal name="customizeModello"/>
|
|
||||||
</preGoal>
|
|
||||||
<!-- Workaround for MODELLO-87 -->
|
|
||||||
<postGoal name="modello:xdoc">
|
|
||||||
<ant:replace file="${maven.modello.xdoc.targetDirectory}/${maven_modello_model_id}.xml" token="packageName" value="package"/>
|
|
||||||
</postGoal>
|
|
||||||
<postGoal name="modello:xsd">
|
|
||||||
<ant:replace file="${maven.modello.xsd.targetDirectory}/${maven_modello_model_id}-${maven.modello.version}.xsd" token="packageName" value="package"/>
|
|
||||||
</postGoal>
|
|
||||||
</project>
|
|
|
@ -1,71 +0,0 @@
|
||||||
# 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
|
|
|
@ -1,209 +0,0 @@
|
||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
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.
|
|
||||||
-->
|
|
||||||
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
|
|
||||||
<name>Maven Model</name>
|
|
||||||
<groupId>maven</groupId>
|
|
||||||
<artifactId>maven-model</artifactId>
|
|
||||||
<currentVersion>3.0.2</currentVersion>
|
|
||||||
<description>The Maven project descriptor used in Maven 1.x. This library is used to represent in Java the POM (project.xml) and it offers services to parse and to serialize it.</description>
|
|
||||||
<shortDescription>The Maven project descriptor used in Maven.</shortDescription>
|
|
||||||
<organization>
|
|
||||||
<name>Apache Software Foundation</name>
|
|
||||||
<url>http://www.apache.org/</url>
|
|
||||||
<logo>http://maven.apache.org/images/apache-maven-project-2.png</logo>
|
|
||||||
</organization>
|
|
||||||
<inceptionYear>2005</inceptionYear>
|
|
||||||
<package>org.apache.maven</package>
|
|
||||||
<logo>http://maven.apache.org/images/maven-logo-2.gif</logo>
|
|
||||||
<url>http://maven.apache.org/maven-1.x/reference/maven-model/${pom.currentVersion}/</url>
|
|
||||||
<siteAddress>people.apache.org</siteAddress>
|
|
||||||
<siteDirectory>/www/maven.apache.org/maven-1.x/reference/maven-model/${pom.currentVersion}/</siteDirectory>
|
|
||||||
<distributionSite>people.apache.org</distributionSite>
|
|
||||||
<distributionDirectory>/www/people.apache.org/repo/m1-ibiblio-rsync-repository/</distributionDirectory>
|
|
||||||
<repository>
|
|
||||||
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/trunk/maven-model/</connection>
|
|
||||||
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk/maven-model/</developerConnection>
|
|
||||||
<url>http://svn.apache.org/viewcvs/maven/components/trunk/maven-model/</url>
|
|
||||||
</repository>
|
|
||||||
<mailingLists>
|
|
||||||
<mailingList>
|
|
||||||
<name>Maven User List</name>
|
|
||||||
<subscribe>users-subscribe@maven.apache.org</subscribe>
|
|
||||||
<unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
|
|
||||||
<post>users@maven.apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/maven-users/</archive>
|
|
||||||
<otherArchives>
|
|
||||||
<otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
|
|
||||||
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
|
|
||||||
</otherArchives>
|
|
||||||
</mailingList>
|
|
||||||
<mailingList>
|
|
||||||
<name>Maven Developer List</name>
|
|
||||||
<subscribe>dev-subscribe@maven.apache.org</subscribe>
|
|
||||||
<unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe>
|
|
||||||
<post>dev@maven.apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev/</archive>
|
|
||||||
<otherArchives>
|
|
||||||
<otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
|
|
||||||
<otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
|
|
||||||
</otherArchives>
|
|
||||||
</mailingList>
|
|
||||||
<mailingList>
|
|
||||||
<name>Maven Commits List</name>
|
|
||||||
<subscribe>commits-subscribe@maven.apache.org</subscribe>
|
|
||||||
<unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
|
|
||||||
<post>commits@maven.apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev/</archive>
|
|
||||||
</mailingList>
|
|
||||||
<mailingList>
|
|
||||||
<name>Maven Issues List</name>
|
|
||||||
<subscribe>issues-subscribe@maven.apache.org</subscribe>
|
|
||||||
<unsubscribe>issues-unsubscribe@maven.apache.org</unsubscribe>
|
|
||||||
<post>issues@maven.apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
|
|
||||||
</mailingList>
|
|
||||||
<mailingList>
|
|
||||||
<name>Maven Announce List</name>
|
|
||||||
<subscribe>announce-subscribe@maven.apache.org</subscribe>
|
|
||||||
<unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
|
|
||||||
<post>announce@maven.apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
|
|
||||||
</mailingList>
|
|
||||||
<mailingList>
|
|
||||||
<name>Apache Announce List</name>
|
|
||||||
<subscribe>announce-subscribe@apache.org</subscribe>
|
|
||||||
<unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
|
|
||||||
<post>announce@apache.org</post>
|
|
||||||
<archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
|
|
||||||
</mailingList>
|
|
||||||
</mailingLists>
|
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<name>Arnaud Heritier</name>
|
|
||||||
<id>aheritier</id>
|
|
||||||
<email>aheritier@apache.org</email>
|
|
||||||
<organization>Octo Technology</organization>
|
|
||||||
<roles>
|
|
||||||
<role>Developer</role>
|
|
||||||
</roles>
|
|
||||||
<timezone>+1</timezone>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<name>Vincent Massol</name>
|
|
||||||
<id>vmassol</id>
|
|
||||||
<email>vmassol@pivolis.com</email>
|
|
||||||
<organization>Pivolis</organization>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
<timezone>+1</timezone>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<name>Brett Porter</name>
|
|
||||||
<id>brett</id>
|
|
||||||
<email>brett@apache.org</email>
|
|
||||||
<organization>f2 network</organization>
|
|
||||||
<roles>
|
|
||||||
<role>Developer</role>
|
|
||||||
</roles>
|
|
||||||
<timezone>+10</timezone>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<name>Jason van Zyl</name>
|
|
||||||
<id>jvanzyl</id>
|
|
||||||
<email>jason@zenplex.com</email>
|
|
||||||
<organization>Zenplex</organization>
|
|
||||||
<roles>
|
|
||||||
<role>Architect</role>
|
|
||||||
<role>Release Manager</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<name>Emmanuel Venisse</name>
|
|
||||||
<id>evenisse</id>
|
|
||||||
<email>emmanuel@venisse.net</email>
|
|
||||||
<organization/>
|
|
||||||
<roles>
|
|
||||||
<role>Java Developer</role>
|
|
||||||
</roles>
|
|
||||||
<timezone>+1</timezone>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>plexus</groupId>
|
|
||||||
<artifactId>plexus-utils</artifactId>
|
|
||||||
<version>1.0.3</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>maven</groupId>
|
|
||||||
<artifactId>dom4j</artifactId>
|
|
||||||
<version>1.7-20060614</version>
|
|
||||||
<url>http://www.dom4j.org/</url>
|
|
||||||
<properties>
|
|
||||||
<comment>Maven model dependency - Required to read/write XML using dom4j.</comment>
|
|
||||||
</properties>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>stax</groupId>
|
|
||||||
<artifactId>stax</artifactId>
|
|
||||||
<version>1.2.0</version>
|
|
||||||
<properties>
|
|
||||||
<comment>Maven model dependency - Required to read/write XML using stax.</comment>
|
|
||||||
</properties>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>stax</groupId>
|
|
||||||
<artifactId>stax-api</artifactId>
|
|
||||||
<version>1.0.1</version>
|
|
||||||
<properties>
|
|
||||||
<comment>Maven model dependency - Required to read/write XML using stax.</comment>
|
|
||||||
</properties>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.java.dev.stax-utils</groupId>
|
|
||||||
<artifactId>stax-utils</artifactId>
|
|
||||||
<version>20060502</version>
|
|
||||||
<properties>
|
|
||||||
<comment>Maven model dependency - Required to read/write XML using stax.</comment>
|
|
||||||
</properties>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<defaultGoal>jar:install</defaultGoal>
|
|
||||||
<sourceDirectory>${maven.build.dir}/generated-src/main/modello</sourceDirectory>
|
|
||||||
</build>
|
|
||||||
<reports>
|
|
||||||
<report>maven-modello-plugin</report>
|
|
||||||
<report>maven-javadoc-plugin</report>
|
|
||||||
<report>maven-changelog-plugin</report>
|
|
||||||
<report>maven-file-activity-plugin</report>
|
|
||||||
<report>maven-developer-activity-plugin</report>
|
|
||||||
<report>maven-linkcheck-plugin</report>
|
|
||||||
</reports>
|
|
||||||
<versions>
|
|
||||||
<version>
|
|
||||||
<id>3.0.2</id>
|
|
||||||
<name>3.0.2</name>
|
|
||||||
<tag>maven-model-3.0.2</tag>
|
|
||||||
</version>
|
|
||||||
</versions>
|
|
||||||
</project>
|
|
Loading…
Reference in New Issue