maven-migrator-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.marvelution.maven.plugins</groupId> <artifactId>maven-migrator-plugin</artifactId> <version>1.0-beta-1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to Marvelution under one or more contributor license ~ agreements. See the NOTICE file distributed with this work ~ for additional information regarding copyright ownership. ~ Marvelution 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/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>maven-plugins</artifactId> <groupId>com.marvelution.maven.plugins</groupId> <version>1.1</version> </parent> <groupId>com.marvelution.maven.plugins</groupId> <artifactId>maven-migrator-plugin</artifactId> <version>1.0-beta-1</version> <packaging>maven-plugin</packaging> <name>Maven 2.x Migrator Plugin</name> <description>Maven 2.x plugin to migrate a NON-Maven 2.x project into a Maven 2.x project</description> <url>http://maven.marvelution.com/plugins/maven-migrator-plugin/</url> <inceptionYear>2008</inceptionYear> <organization> <name>Marvelution</name> <url>http://www.marvelution.com/</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <prerequisites> <maven>2.0.10</maven> </prerequisites> <scm> <connection>scm:svn:http://svn.marvelution.com/maven/plugins/tags/maven-migrator-plugin-1.0-beta-1</connection> <developerConnection>scm:svn:http://svn.marvelution.com/maven/plugins/tags/maven-migrator-plugin-1.0-beta-1</developerConnection> <url>http://svn.marvelution.com/maven/plugins/tags/maven-migrator-plugin-1.0-beta-1</url> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.marvelution.com/browse/MVNMIGR</url> </issueManagement> <ciManagement> <system>Hudson</system> <url>http://hudson.marvelution.com/</url> <notifiers> <notifier> <type>mail</type> <configuration> <address>build-notifications@maven.marvelution.com</address> </configuration> </notifier> </notifiers> </ciManagement> <distributionManagement> <site> <id>marvelution.website</id> <url>scp://marvelution.com/home/markrekveld/maven.marvelution.com/plugins/maven-migrator-plugin/</url> </site> </distributionManagement> <properties> <stagingSiteURL>scp://marvelution.com/home/markrekveld/staging.maven.marvelution.com/plugins/maven-migrator-plugin</stagingSiteURL> <mavenVersion>2.0.10</mavenVersion> </properties> <dependencies> <dependency> <groupId>com.marvelution.maven.components</groupId> <artifactId>maven-migration-manager</artifactId> <version>1.0-beta-1</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.6</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-io</artifactId> <version>1.0-alpha-1</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <developers> <developer> <id>markrekveld</id> <name>Mark Rekveld</name> <email>markrekveld@marvelution.com</email> <url>http://www.marvelution.com/</url> <organization>Marvelution</organization> <organizationUrl>http://www.marvelution.com/</organizationUrl> <timezone>+1</timezone> <roles> <role>Marvelution Member</role> </roles> </developer> </developers> </project>