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 2006/12/20 10:30:18 UTC

svn commit: r489017 - in /incubator/nmaven/trunk: bootstrap-build.bat bootstrap-build.sh pom.xml

Author: sisbell
Date: Wed Dec 20 02:30:12 2006
New Revision: 489017

URL: http://svn.apache.org/viewvc?view=rev&rev=489017
Log:
Adding bootstrap builds for project.

Added:
    incubator/nmaven/trunk/bootstrap-build.bat   (with props)
    incubator/nmaven/trunk/bootstrap-build.sh   (with props)
    incubator/nmaven/trunk/pom.xml   (with props)

Added: incubator/nmaven/trunk/bootstrap-build.bat
URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/bootstrap-build.bat?view=auto&rev=489017
==============================================================================
--- incubator/nmaven/trunk/bootstrap-build.bat (added)
+++ incubator/nmaven/trunk/bootstrap-build.bat Wed Dec 20 02:30:12 2006
@@ -0,0 +1,4 @@
+call mvn -f ./components/pom.xml install
+call mvn -f ./plugins/pom-java-bootstrap.xml install
+call mvn org.apache.maven.dotnet.plugins:maven-install-plugin:install-file -Dfile=./plugins/imports/nunit-2.0/nunit.framework.dll -DgroupId=org.nunit -DartifactId=nunit.framework -Dpackaging=dll -Dversion=2.2.8.0
+call mvn -f ./plugins/pom-net-bootstrap.xml -Dmaven.test.skip=true -Dbootstrap install
\ No newline at end of file

Propchange: incubator/nmaven/trunk/bootstrap-build.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/trunk/bootstrap-build.sh
URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/bootstrap-build.sh?view=auto&rev=489017
==============================================================================
--- incubator/nmaven/trunk/bootstrap-build.sh (added)
+++ incubator/nmaven/trunk/bootstrap-build.sh Wed Dec 20 02:30:12 2006
@@ -0,0 +1,4 @@
+mvn -f ./components/pom.xml install
+mvn -f ./plugins/pom-java-bootstrap.xml install
+mvn org.apache.maven.dotnet.plugins:maven-install-plugin:install-file -Dfile=./plugins/imports/nunit-2.0/nunit.framework.dll -DgroupId=org.nunit -DartifactId=nunit.framework -Dpackaging=dll -Dversion=2.2.8.0
+mvn -f ./plugins/pom-net-bootstrap.xml -Dmaven.test.skip=true -Dbootstrap install
\ No newline at end of file

Propchange: incubator/nmaven/trunk/bootstrap-build.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/pom.xml?view=auto&rev=489017
==============================================================================
--- incubator/nmaven/trunk/pom.xml (added)
+++ incubator/nmaven/trunk/pom.xml Wed Dec 20 02:30:12 2006
@@ -0,0 +1,12 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.maven.dotnet</groupId>
+    <artifactId>dotnet</artifactId>
+    <packaging>pom</packaging>
+    <version>0.14-SNAPSHOT</version>
+    <name>dotnet</name>
+    <modules>
+        <module>components</module>
+        <module>plugins</module>
+    </modules>
+</project>
\ No newline at end of file

Propchange: incubator/nmaven/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native