mirror of
https://github.com/apache/maven.git
synced 2025-02-14 22:16:27 +00:00
o add the generation of a JDOMWriter for use in the embedder so that working with models doesn't completely whack the existing XML, and allow for outputting the namespace declarations o add a security manager to the embedder which is off by default but will barf if someone tries to set system properties. you have to specifically turn this on because it will more then likely break tons of code like xerces setting a system property named "version", nice. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@493811 13f79535-47bb-0310-9956-ffa450edef68
35 lines
1001 B
XML
35 lines
1001 B
XML
<?xml version="1.0" encoding="UTF-8"?><project>
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-registry</artifactId>
|
|
<name>Maven Plugin Registry Model</name>
|
|
<version>2.1-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<configuration>
|
|
<version>1.0.0</version>
|
|
<model>plugin-registry.mdo</model>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|