mirror of
https://github.com/apache/maven.git
synced 2025-03-06 16:49:27 +00:00
o Fixed problems with plugin-plugin (had to do with refactored plugin-tools stuff) o Added marmalade-mojo support, although without an integration test (verified it doesn't get in the way of 'normal' functionality, though) o Added code in mboot2 to copy marmalade-mojo support libs to ${maven.home}/lib git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163405 13f79535-47bb-0310-9956-ffa450edef68
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<!-- parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-script-root</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent -->
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-script-marmalade</artifactId>
|
|
<name>Maven Marmalade Mojo Support</name>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-plugin</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>marmalade</groupId>
|
|
<artifactId>marmalade-core</artifactId>
|
|
<version>1.0-alpha2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-marmalade-factory</artifactId>
|
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xpp3</groupId>
|
|
<artifactId>xpp3</artifactId>
|
|
<version>1.1.3.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|