You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by mo...@apache.org on 2009/11/19 18:50:20 UTC

svn commit: r882244 - in /incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi: linux-x86/pom.xml win32/pom.xml

Author: monteith
Date: Thu Nov 19 18:50:20 2009
New Revision: 882244

URL: http://svn.apache.org/viewvc?rev=882244&view=rev
Log:
Allow native builds to build first time, to create target file in correct place.

Modified:
    incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/linux-x86/pom.xml
    incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/linux-x86/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/linux-x86/pom.xml?rev=882244&r1=882243&r2=882244&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/linux-x86/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/linux-x86/pom.xml Thu Nov 19 18:50:20 2009
@@ -41,6 +41,7 @@
 
 
 	<build>
+        <directory>../target</directory>
 		<plugins>
 			<plugin>
 				<groupId>org.codehaus.mojo</groupId>
@@ -79,33 +80,6 @@
 
 			</plugin>
 
-			<plugin>
-				<artifactId>maven-resources-plugin
-				</artifactId>
-				<version>2.4</version>
-				<executions>
-					<execution>
-						<id>copy-resources</id>
-						<phase>validate</phase>
-						<goals>
-							<goal>copy-resources</goal>
-						</goals>
-						<configuration>
-							<outputDirectory>${basedir}/../target
-							</outputDirectory>
-							<resources>
-								<resource>
-									<directory>${basedir}/target/</directory>
-									<includes>
-										<include>*.so</include>
-									</includes>
-								</resource>
-							</resources>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-
 		</plugins>
 
 	</build>

Modified: incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml?rev=882244&r1=882243&r2=882244&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml Thu Nov 19 18:50:20 2009
@@ -39,6 +39,7 @@
   
   
   <build>
+    <directory>../target</directory>
     <plugins>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
@@ -76,31 +77,6 @@
         
       </plugin>
 
-	<plugin>
-        <artifactId>maven-resources-plugin</artifactId>
-        <version>2.4</version>
-        <executions>
-          <execution>
-            <id>copy-resources</id>
-            <phase>validate</phase>
-            <goals>
-              <goal>copy-resources</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${basedir}/../target</outputDirectory>
-              <resources>          
-                <resource>
-                  <directory>${basedir}/target/</directory>
-                  <includes>
-         			 <include>*.dll</include>
-				  </includes>
-                </resource>
-              </resources>              
-            </configuration>            
-          </execution>
-        </executions>
-      </plugin>
-
     </plugins>    
 
   </build>