Author: sisbell Date: Tue Feb 27 09:47:23 2007 New Revision: 512338 URL: http://svn.apache.org/viewvc?view=rev&rev=512338 Log: Reformatted plugin classes to follow code conventions.
Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/SourceProcessorMojo.java incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/TestSourceProcessorMojo.java incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/pom.xml incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/FileInstallerMojo.java incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/InstallerMojo.java incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/TargetModuleInstallerMojo.java incubator/nmaven/branches/SI_IDE/plugins/maven-resgen-plugin/pom.xml incubator/nmaven/branches/SI_IDE/plugins/maven-webapp-plugin/pom.xml incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/pom.xml incubator/nmaven/branches/SI_IDE/plugins/maven-xsd-plugin/pom.xml incubator/nmaven/branches/SI_IDE/plugins/maven-xsp-plugin/pom.xml Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/SourceProcessorMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/SourceProcessorMojo.java?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/SourceProcessorMojo.java (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/SourceProcessorMojo.java Tue Feb 27 09:47:23 2007 @@ -37,7 +37,9 @@ * @phase process-sources */ -public class SourceProcessorMojo extends AbstractMojo { +public class SourceProcessorMojo + extends AbstractMojo +{ /** * Source directory @@ -65,32 +67,43 @@ */ private String[] excludes; - public void execute() throws MojoExecutionException { - if (!new File(sourceDirectory).exists()) { - getLog().info("NMAVEN-904-001: No source files to copy"); + public void execute() + throws MojoExecutionException + { + if ( !new File( sourceDirectory ).exists() ) + { + getLog().info( "NMAVEN-904-001: No source files to copy" ); return; } DirectoryScanner directoryScanner = new DirectoryScanner(); - directoryScanner.setBasedir(sourceDirectory); + directoryScanner.setBasedir( sourceDirectory ); - List<String> excludeList = new ArrayList<String>(); - excludeList.add( "*.suo"); - excludeList.add( "*.csproj"); - excludeList.add( "*.sln"); - excludeList.add( "obj/**"); - - if(includes != null && includes.length > 0 ) directoryScanner.setIncludes(includes); - directoryScanner.setExcludes(excludeList.toArray(excludes)); + List<String> excludeList = new ArrayList<String>(); + excludeList.add( "*.suo" ); + excludeList.add( "*.csproj" ); + excludeList.add( "*.sln" ); + excludeList.add( "obj/**" ); + + if ( includes != null && includes.length > 0 ) + { + directoryScanner.setIncludes( includes ); + } + directoryScanner.setExcludes( excludeList.toArray( excludes ) ); directoryScanner.addDefaultExcludes(); directoryScanner.scan(); String[] files = directoryScanner.getIncludedFiles(); - getLog().info("NMAVEN-904-002: Copying source files: From = " + sourceDirectory + ", To = " + outputDirectory); - for (String file : files) { - try { - FileUtils.copyFile(new File(sourceDirectory + File.separator + file), - new File(outputDirectory + File.separator + file)); - } catch (IOException e) { - throw new MojoExecutionException("NMAVEN-904-000: Unable to process sources", e); + getLog().info( + "NMAVEN-904-002: Copying source files: From = " + sourceDirectory + ", To = " + outputDirectory ); + for ( String file : files ) + { + try + { + FileUtils.copyFile( new File( sourceDirectory + File.separator + file ), + new File( outputDirectory + File.separator + file ) ); + } + catch ( IOException e ) + { + throw new MojoExecutionException( "NMAVEN-904-000: Unable to process sources", e ); } } } Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/TestSourceProcessorMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/TestSourceProcessorMojo.java?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/TestSourceProcessorMojo.java (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-compile-plugin/src/main/java/org/apache/maven/dotnet/plugin/compile/TestSourceProcessorMojo.java Tue Feb 27 09:47:23 2007 @@ -35,7 +35,9 @@ * @goal process-test-sources * @phase process-sources */ -public class TestSourceProcessorMojo extends AbstractMojo { +public class TestSourceProcessorMojo + extends AbstractMojo +{ /** * Source directory @@ -53,31 +55,39 @@ */ private String outputDirectory; - public void execute() throws MojoExecutionException { - if (!new File(sourceDirectory).exists()) { - getLog().info("NMAVEN-905-001: No test source files to copy"); + public void execute() + throws MojoExecutionException + { + if ( !new File( sourceDirectory ).exists() ) + { + getLog().info( "NMAVEN-905-001: No test source files to copy" ); return; } DirectoryScanner directoryScanner = new DirectoryScanner(); - directoryScanner.setBasedir(sourceDirectory); + directoryScanner.setBasedir( sourceDirectory ); - List<String> excludeList = new ArrayList<String>(); - excludeList.add( "*.suo"); - excludeList.add( "*.csproj"); - excludeList.add( "*.sln"); - excludeList.add( "obj/**"); - directoryScanner.setExcludes(excludeList.toArray(new String[excludeList.size()])); + List<String> excludeList = new ArrayList<String>(); + excludeList.add( "*.suo" ); + excludeList.add( "*.csproj" ); + excludeList.add( "*.sln" ); + excludeList.add( "obj/**" ); + directoryScanner.setExcludes( excludeList.toArray( new String[excludeList.size()] ) ); directoryScanner.addDefaultExcludes(); directoryScanner.scan(); String[] files = directoryScanner.getIncludedFiles(); - getLog().info("NMAVEN-905-002: Copying test source files: From = " + sourceDirectory + ", To = " + outputDirectory); - for (String file : files) { - try { - FileUtils.copyFile(new File(sourceDirectory + File.separator + file), - new File(outputDirectory + File.separator + file)); - } catch (IOException e) { - throw new MojoExecutionException("NMAVEN-905-000: Unable to process test sources", e); + getLog().info( + "NMAVEN-905-002: Copying test source files: From = " + sourceDirectory + ", To = " + outputDirectory ); + for ( String file : files ) + { + try + { + FileUtils.copyFile( new File( sourceDirectory + File.separator + file ), + new File( outputDirectory + File.separator + file ) ); + } + catch ( IOException e ) + { + throw new MojoExecutionException( "NMAVEN-905-000: Unable to process test sources", e ); } } } Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,18 +1,19 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-install-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-install-plugin</name> - <description> - Maven Plugin for .NET - </description> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-install-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-install-plugin</name> + <description> + Maven Plugin for .NET + </description> <distributionManagement> <site> <id>nmaven-apache-site</id> Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/FileInstallerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/FileInstallerMojo.java?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/FileInstallerMojo.java (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/FileInstallerMojo.java Tue Feb 27 09:47:23 2007 @@ -33,7 +33,9 @@ * @requiresProject false */ -public class FileInstallerMojo extends AbstractMojo { +public class FileInstallerMojo + extends AbstractMojo +{ /** * The maven project. @@ -89,18 +91,27 @@ */ private org.apache.maven.dotnet.NMavenRepositoryRegistry nmavenRegistry; - public void execute() throws MojoExecutionException { - try { + public void execute() + throws MojoExecutionException + { + try + { nmavenRegistry.createRepositoryRegistry(); - } catch (IOException e) { - throw new MojoExecutionException("NMAVEN-1000-001: Failed to create the repository registry for this plugin", e); + } + catch ( IOException e ) + { + throw new MojoExecutionException( + "NMAVEN-1000-001: Failed to create the repository registry for this plugin", e ); } - artifactContext.init(project, localRepository); - try { - artifactContext.getArtifactInstaller().installFile(groupId, artifactId, version, packaging, pomFile); - } catch (org.apache.maven.artifact.installer.ArtifactInstallationException e) { - throw new MojoExecutionException("NMAVEN-1000-000: Failed to install artifact file", e); + artifactContext.init( project, localRepository ); + try + { + artifactContext.getArtifactInstaller().installFile( groupId, artifactId, version, packaging, pomFile ); + } + catch ( org.apache.maven.artifact.installer.ArtifactInstallationException e ) + { + throw new MojoExecutionException( "NMAVEN-1000-000: Failed to install artifact file", e ); } } } Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/InstallerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/InstallerMojo.java?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/InstallerMojo.java (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/InstallerMojo.java Tue Feb 27 09:47:23 2007 @@ -24,13 +24,16 @@ import org.apache.maven.artifact.installer.ArtifactInstaller; import org.apache.maven.artifact.installer.ArtifactInstallationException; import org.apache.maven.dotnet.artifact.ArtifactContext; + import java.io.File; /** * @goal install * @phase install */ -public class InstallerMojo extends AbstractMojo { +public class InstallerMojo + extends AbstractMojo +{ /** * The maven project. @@ -63,11 +66,16 @@ */ private ArtifactContext artifactContext; - public void execute() throws MojoExecutionException { - try { - artifactContext.getArtifactInstaller().installArtifact(project.getArtifact(), pomFile); - } catch (ArtifactInstallationException e) { - throw new MojoExecutionException("NMAVEN-1001-000: Failed to install artifacts", e); + public void execute() + throws MojoExecutionException + { + try + { + artifactContext.getArtifactInstaller().installArtifact( project.getArtifact(), pomFile ); + } + catch ( ArtifactInstallationException e ) + { + throw new MojoExecutionException( "NMAVEN-1001-000: Failed to install artifacts", e ); } } } Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/TargetModuleInstallerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/TargetModuleInstallerMojo.java?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/TargetModuleInstallerMojo.java (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-install-plugin/src/main/java/org/apache/maven/dotnet/plugin/install/TargetModuleInstallerMojo.java Tue Feb 27 09:47:23 2007 @@ -35,7 +35,9 @@ * @phase process-classes */ -public class TargetModuleInstallerMojo extends AbstractMojo { +public class TargetModuleInstallerMojo + extends AbstractMojo +{ /** * @component @@ -62,18 +64,27 @@ */ private org.apache.maven.dotnet.NMavenRepositoryRegistry nmavenRegistry; - public void execute() throws MojoExecutionException { - try { + public void execute() + throws MojoExecutionException + { + try + { nmavenRegistry.createRepositoryRegistry(); - } catch (IOException e) { - throw new MojoExecutionException("NMAVEN-1002-001: Failed to create the repository registry for this plugin", e); + } + catch ( IOException e ) + { + throw new MojoExecutionException( + "NMAVEN-1002-001: Failed to create the repository registry for this plugin", e ); } - artifactContext.init(project, localRepository); - try { - artifactContext.getArtifactInstaller().installNetModulesToTargetDirectory(project.getArtifact()); - } catch (ArtifactInstallationException e) { - throw new MojoExecutionException("NMAVEN-1002-000: Failed to install artifacts into target directory", e); + artifactContext.init( project, localRepository ); + try + { + artifactContext.getArtifactInstaller().installNetModulesToTargetDirectory( project.getArtifact() ); + } + catch ( ArtifactInstallationException e ) + { + throw new MojoExecutionException( "NMAVEN-1002-000: Failed to install artifacts into target directory", e ); } } } Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-resgen-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-resgen-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-resgen-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-resgen-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,37 +1,38 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-resgen-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-resgen-plugin</name> - <description> - Maven Plugin for .NET - </description> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.dotnet.plugins</groupId> - <artifactId>maven-resolver-plugin</artifactId> - <configuration> - <netDependencies> - <netDependencies> - <groupId>org.apache.maven.bogus</groupId> - <artifactId>test</artifactId> - <version>1.0.0</version> - <type>exe</type> - </netDependencies> - </netDependencies> - </configuration> - </plugin> - </plugins> - </build> - <distributionManagement> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-resgen-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-resgen-plugin</name> + <description> + Maven Plugin for .NET + </description> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-resolver-plugin</artifactId> + <configuration> + <netDependencies> + <netDependencies> + <groupId>org.apache.maven.bogus</groupId> + <artifactId>test</artifactId> + <version>1.0.0</version> + <type>exe</type> + </netDependencies> + </netDependencies> + </configuration> + </plugin> + </plugins> + </build> + <distributionManagement> <site> <id>nmaven-apache-site</id> <name>NMaven Site</name> Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-webapp-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-webapp-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-webapp-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-webapp-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,31 +1,32 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-webapp-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-webapp-plugin</name> - <description> - Maven Plugin for .NET - </description> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-webapp-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-webapp-plugin</name> + <description> + Maven Plugin for .NET + </description> - <dependencies> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-archiver</artifactId> - <version>1.0-alpha-3</version> - </dependency> - <dependency> - <groupId>org.easymock</groupId> - <artifactId>easymock</artifactId> - <version>2.0</version> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-archiver</artifactId> + <version>1.0-alpha-3</version> + </dependency> + <dependency> + <groupId>org.easymock</groupId> + <artifactId>easymock</artifactId> + <version>2.0</version> + </dependency> + </dependencies> <distributionManagement> <site> <id>nmaven-apache-site</id> Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,27 +1,28 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-wsdl-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-wsdl-plugin</name> - <description> - Maven Plugin for .NET - </description> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-wsdl-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-wsdl-plugin</name> + <description> + Maven Plugin for .NET + </description> - <dependencies> - <dependency> - <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-plugin-testing-harness</artifactId> - <version>1.0-beta-1</version> - <scope>test</scope> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.apache.maven.shared</groupId> + <artifactId>maven-plugin-testing-harness</artifactId> + <version>1.0-beta-1</version> + <scope>test</scope> + </dependency> + </dependencies> <distributionManagement> <site> <id>nmaven-apache-site</id> Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-xsd-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-xsd-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-xsd-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-xsd-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,27 +1,28 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-xsd-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-xsd-plugin</name> - <description> - Maven Plugin for .NET - </description> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-xsd-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-xsd-plugin</name> + <description> + Maven Plugin for .NET + </description> - <dependencies> - <dependency> - <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-plugin-testing-harness</artifactId> - <version>1.0-beta-1</version> - <scope>test</scope> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.apache.maven.shared</groupId> + <artifactId>maven-plugin-testing-harness</artifactId> + <version>1.0-beta-1</version> + <scope>test</scope> + </dependency> + </dependencies> <distributionManagement> <site> <id>nmaven-apache-site</id> Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-xsp-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-xsp-plugin/pom.xml?view=diff&rev=512338&r1=512337&r2=512338 ============================================================================== --- incubator/nmaven/branches/SI_IDE/plugins/maven-xsp-plugin/pom.xml (original) +++ incubator/nmaven/branches/SI_IDE/plugins/maven-xsp-plugin/pom.xml Tue Feb 27 09:47:23 2007 @@ -1,18 +1,19 @@ -<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.plugins</groupId> - <version>0.14-SNAPSHOT</version> - <artifactId>maven-dotnet-plugins</artifactId> - </parent> - <modelVersion>4.0.0</modelVersion> +<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.plugins</groupId> - <artifactId>maven-xsp-plugin</artifactId> - <packaging>maven-plugin</packaging> <version>0.14-SNAPSHOT</version> - <name>maven-xsp-plugin</name> - <description> - Maven Plugin for .NET - </description> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-xsp-plugin</artifactId> + <packaging>maven-plugin</packaging> + <version>0.14-SNAPSHOT</version> + <name>maven-xsp-plugin</name> + <description> + Maven Plugin for .NET + </description> <distributionManagement> <site> <id>nmaven-apache-site</id>