You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by si...@apache.org on 2007/04/28 05:16:27 UTC

svn commit: r533294 - in /incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders: ./ configurationAppenders.mdo pom.xml

Author: sisbell
Date: Fri Apr 27 22:16:26 2007
New Revision: 533294

URL: http://svn.apache.org/viewvc?view=rev&rev=533294
Log:
Initial import of configuration appender model. This is used to load the appenders for writing out configuration fils for .NET  plugins.

Added:
    incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/
    incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/configurationAppenders.mdo
    incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml   (with props)

Added: incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/configurationAppenders.mdo
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/configurationAppenders.mdo?view=auto&rev=533294
==============================================================================
--- incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/configurationAppenders.mdo (added)
+++ incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/configurationAppenders.mdo Fri Apr 27 22:16:26 2007
@@ -0,0 +1,38 @@
+<model>
+  <id>configurationappenders</id>
+  <name>ConfigurationAppenders</name>
+  <description></description>
+  <defaults>
+    <default>
+      <key>package</key>
+      <value>org.apache.maven.dotnet.model.configurationappenders</value>
+    </default>
+  </defaults>
+  <classes>
+    <class rootElement="true">
+      <name>ConfigurationAppenderModel</name>
+      <fields>
+        <field>
+          <name>configurationAppenders</name>
+          <description></description>
+          <association>
+            <type>ConfigurationAppender</type>
+            <multiplicity>*</multiplicity>
+          </association>
+        </field>
+      </fields>
+    </class>
+    <class xml.tagName="configurationAppender">
+      <name>ConfigurationAppender</name>
+      <fields>
+        <field>
+          <name>name</name>
+          <version>1.0.0</version>
+          <type>String</type>
+          <description></description>
+        </field>
+      </fields>
+    </class>
+
+  </classes>
+</model>

Added: incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml?view=auto&rev=533294
==============================================================================
--- incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml (added)
+++ incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml Fri Apr 27 22:16:26 2007
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?><!--
+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/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">
+  <parent>
+    <groupId>org.apache.maven.dotnet</groupId>
+    <version>0.14-SNAPSHOT</version>
+    <artifactId>dotnet-model</artifactId>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.dotnet</groupId>
+  <artifactId>dotnet-model-configuration-appenders</artifactId>
+  <version>0.14-SNAPSHOT</version>
+  <name>dotnet-model-configuration-appenders</name>
+  <description>
+
+  </description>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.modello</groupId>
+        <artifactId>modello-maven-plugin</artifactId>
+        <version>1.0-alpha-10</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>xpp3-reader</goal>
+              <goal>java</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <model>configurationAppenders.mdo</model>
+          <version>1.0.0</version>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <workingDirectory>${project.build.directory}/site</workingDirectory>
+          <siteDirectory>${project.build.directory}/generated-site</siteDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.0.4</version>
+    </dependency>
+  </dependencies>
+  <distributionManagement>
+    <site>
+      <id>nmaven-site</id>
+      <name>NMaven Site</name>
+      <url>
+        scp://shell.sourceforge.net//home/groups/n/nm/nmaven/htdocs/components/nmaven-model/nmaven-compile-plugin</url>
+    </site>
+  </distributionManagement>
+</project>
\ No newline at end of file

Propchange: incubator/nmaven/branches/SI_XPT/components/dotnet-model/configuration-appenders/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native