mirror of
https://github.com/apache/maven.git
synced 2025-02-12 04:55:38 +00:00
o Changed default value for usePluginRegistry to 'false' in settings.mdo o Changed default value for updateInterval to 'never' in plugin-registry.mdo o Added ActivationOS in settings.mdo, profiles.mdo, maven.mdo o Added code to the conversion utilities for Settings and Profiles to corresponding maven-model classes for ActivationOS o Added OS activator for profiles which allows architecture, name, family, and version (with '!' negation of any of these) o Added ActivationFile to settings.mdo, along with conversion code in the Settings->Model conversion utility o Added packageWithVersion configuration to the modello plugin definition in maven-settings (this is apparently required now) git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293479 13f79535-47bb-0310-9956-ffa450edef68
52 lines
1.4 KiB
XML
52 lines
1.4 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-settings</artifactId>
|
|
<name>Maven Local Settings Model</name>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>1.0-alpha-3</version>
|
|
<configuration>
|
|
<packageWithVersion>false</packageWithVersion>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>xpp3-writer</goal>
|
|
<goal>java</goal>
|
|
<goal>xpp3-reader</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>1.0.0</version>
|
|
<model>settings.mdo</model>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>2.0-beta-3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|