Author: eworley
Date: Fri Nov 30 22:09:48 2007
New Revision: 600051

URL: http://svn.apache.org/viewvc?rev=600051&view=rev
Log:
Adding pom for dotnet-compiler-ext, added dotnet-compiler-ext to parent pom, 
fixed annotation in CCharpCompiler

Added:
    
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/pom.xml
Modified:
    
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/src/main/java/org/apache/maven/dotnet/compiler/ext/CSharpCompiler.java
    incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/pom.xml

Added: 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/pom.xml?rev=600051&view=auto
==============================================================================
--- 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/pom.xml
 (added)
+++ 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/pom.xml
 Fri Nov 30 22:09:48 2007
@@ -0,0 +1,45 @@
+<?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: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-incubating-SNAPSHOT</version>  
+    <artifactId>dotnet-components</artifactId> 
+  </parent>  
+  <modelVersion>4.0.0</modelVersion>  
+  <groupId>org.apache.maven.dotnet</groupId>  
+  <artifactId>dotnet-compiler-ext</artifactId>  
+  <name>dotnet-compiler-ext</name>  
+  <description>NMaven</description>
+
+  <!-- The version of maven components/plugins that we depend on -->
+  <properties>
+    <mavenVersion>2.0.8</mavenVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.dotnet</groupId>
+      <artifactId>dotnet-compiler</artifactId>
+      <version>${parent.version}</version>
+    </dependency>
+  </dependencies> 
+</project>

Modified: 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/src/main/java/org/apache/maven/dotnet/compiler/ext/CSharpCompiler.java
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/src/main/java/org/apache/maven/dotnet/compiler/ext/CSharpCompiler.java?rev=600051&r1=600050&r2=600051&view=diff
==============================================================================
--- 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/src/main/java/org/apache/maven/dotnet/compiler/ext/CSharpCompiler.java
 (original)
+++ 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/dotnet-compiler-ext/src/main/java/org/apache/maven/dotnet/compiler/ext/CSharpCompiler.java
 Fri Nov 30 22:09:48 2007
@@ -1,27 +1,24 @@
 package org.apache.maven.dotnet.compiler.ext;
 
-import org.apache.maven.dotnet.compiler.InvalidArtifactException;
+import java.io.File;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.Set;
+
+import org.apache.maven.artifact.Artifact;
+import org.apache.maven.dotnet.compiler.CommandExecutor;
+import org.apache.maven.dotnet.compiler.CompilerAnnotation;
 import org.apache.maven.dotnet.compiler.CompilerContext;
+import org.apache.maven.dotnet.compiler.CompilerException;
+import org.apache.maven.dotnet.compiler.DotnetCompilerConfig;
 import org.apache.maven.dotnet.compiler.DotnetCompilerContext;
-import org.apache.maven.dotnet.compiler.CompilerAnnotation;
-import org.apache.maven.dotnet.compiler.ProgrammingLanguage;
 import org.apache.maven.dotnet.compiler.DotnetCompilerPlatformVersion;
-import org.apache.maven.dotnet.compiler.CommandExecutor;
-import org.apache.maven.dotnet.compiler.CompilerException;
+import org.apache.maven.dotnet.compiler.InvalidArtifactException;
+import org.apache.maven.dotnet.compiler.ProgrammingLanguage;
 import org.apache.maven.dotnet.compiler.Vendor;
-import org.apache.maven.dotnet.compiler.DotnetCompilerConfig;
-
-import org.apache.maven.artifact.Artifact;
-
-import java.io.File;
-import java.util.Set;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.HashSet;
 
[EMAIL PROTECTED](programmingLanguage = ProgrammingLanguage.C_SHARP, vendor = 
Vendor.MICROSOFT, languageVersion,
-                    dotnetCompilerPlatformVersion = 
DotnetCompilerPlatformVersion.VERSION_2_0_50727)
[EMAIL PROTECTED](getProgrammingLanguaqe = ProgrammingLanguage.C_SHARP, 
getVendor = Vendor.MICROSOFT, 
+        getDotnetCompilerPlatformVersion = 
DotnetCompilerPlatformVersion.VERSION_2_0_50727)
 public class CSharpCompiler
     implements org.apache.maven.dotnet.compiler.Compiler
 {

Modified: 
incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/pom.xml?rev=600051&r1=600050&r2=600051&view=diff
==============================================================================
--- incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/pom.xml 
(original)
+++ incubator/nmaven/branches/SI_MAVEN_INTEGRATION/sandbox/components/pom.xml 
Fri Nov 30 22:09:48 2007
@@ -33,6 +33,7 @@
   <description>NMaven provides Maven 2.x plugins to support building of .NET 
applications</description>  
   <modules> 
     <module>dotnet-compiler</module>
+    <module>dotnet-compiler-ext</module>
   </modules>
   <dependencies>
     <dependency>


Reply via email to