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/13 11:18:16 UTC

svn commit: r835814 - /incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml

Author: monteith
Date: Fri Nov 13 11:18:16 2009
New Revision: 835814

URL: http://svn.apache.org/viewvc?rev=835814&view=rev
Log:
Fix formatting on kato.native.distro pom.xml.

Modified:
    incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml?rev=835814&r1=835813&r2=835814&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native.distro/pom.xml Fri Nov 13 11:18:16 2009
@@ -1,4 +1,4 @@
-<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">
+
 <!--
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -16,153 +16,153 @@
  * 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>
+		<artifactId>kato</artifactId>
+		<groupId>org.apache.kato</groupId>
+		<version>M1-incubating</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.apache.kato</groupId>
+	<artifactId>kato.native.distro</artifactId>
+	<packaging>pom</packaging>
+	<version>M1-incubating</version>
+	<name>Kato native runtime distribution packaging</name>
+	<!--
+		configures the dependencies needed for building native code on this
+		platform. Also sets the format of the archive that includes native
+		package.
+		Configured to build 32 bit libraries on 64 bit windows.
+	-->
+	<profiles>
+		<profile>
+			<id>linux-x86</id>
+			<activation>
+				<os>
+					<family>Linux</family>
+					<arch>i386</arch>
+				</os>
+			</activation>
+			<dependencies>
+				<dependency>
+					<artifactId>libkatovmapi-linux-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>so</type>
+				</dependency>
+				<dependency>
+					<artifactId>libcjvmti-linux-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>so</type>
+				</dependency>
+			</dependencies>
+			<properties>
+				<assembly.format>tar.gz</assembly.format>
+				<os.family>linux</os.family>
+			</properties>
+			<build>
+				<plugins>
+					<plugin>
+						<artifactId>maven-assembly-plugin</artifactId>
+						<configuration>
+							<finalName>apache-kato-${project.version}</finalName>
+							<descriptors>
+								<descriptor>src/main/assembly/nativebin.xml</descriptor>
+							</descriptors>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+
+		</profile>
+
+		<profile>
+			<id>windows-amd64</id>
+			<activation>
+				<os>
+					<family>windows</family>
+					<arch>amd64</arch>
+				</os>
+			</activation>
+			<dependencies>
+				<dependency>
+					<artifactId>katovmapi-windows-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>dll</type>
+				</dependency>
+				<dependency>
+					<artifactId>cjvmti-windows-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>dll</type>
+				</dependency>
+			</dependencies>
+			<properties>
+				<assembly.format>zip</assembly.format>
+				<os.family>windows</os.family>
+			</properties>
+			<build>
+				<plugins>
+					<plugin>
+						<artifactId>maven-assembly-plugin</artifactId>
+						<configuration>
+							<finalName>apache-kato-${project.version}</finalName>
+							<descriptors>
+								<descriptor>src/main/assembly/nativebin.xml</descriptor>
+							</descriptors>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+
+		</profile>
+
+		<profile>
+			<id>windows-32</id>
+			<activation>
+				<os>
+					<family>windows</family>
+					<arch>x86</arch>
+				</os>
+			</activation>
+			<dependencies>
+				<dependency>
+					<artifactId>katovmapi-windows-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>dll</type>
+				</dependency>
+				<dependency>
+					<artifactId>cjvmti-windows-x86</artifactId>
+					<groupId>org.apache.kato.native</groupId>
+					<version>M1-incubating</version>
+					<type>dll</type>
+				</dependency>
+			</dependencies>
+			<properties>
+				<assembly.format>zip</assembly.format>
+				<os.family>windows</os.family>
+			</properties>
+			<build>
+				<plugins>
+					<plugin>
+						<artifactId>maven-assembly-plugin</artifactId>
+						<configuration>
+							<finalName>apache-kato-${project.version}</finalName>
+							<descriptors>
+								<descriptor>src/main/assembly/nativebin.xml</descriptor>
+							</descriptors>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+
+		</profile>
 
-  <parent>
-    <artifactId>kato</artifactId>
-    <groupId>org.apache.kato</groupId>
-    <version>M1-incubating</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.kato</groupId>
-  <artifactId>kato.native.distro</artifactId>
-  <packaging>pom</packaging>
-  <version>M1-incubating</version>
-  <name>Kato native runtime distribution packaging</name>
-  
-  <!--  List dependencies here for consideration by the
-        assembly plugin 
-   -->
-<!-- configures the dependencies needed for building native code on this platform.
-     Also sets the format of the archive that includes native package
-   -->
-  <profiles>
-	 <profile>
-      <id>linux-x86</id>
-      <activation>
-        <os>
-          <family>Linux</family>
-          <arch>i386</arch>
-        </os>
-      </activation>
-    <dependencies>
-  	    <dependency>
-  		    <artifactId>libkatovmapi-linux-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>so</type>
-      	</dependency>
-  	    <dependency>
-  		    <artifactId>libcjvmti-linux-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>so</type>
-      	</dependency>
-  </dependencies>
-        <properties>
-            <assembly.format>tar.gz</assembly.format>
-	    <os.family>linux</os.family>
-        </properties>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-       		<configuration>
-       		<finalName>apache-kato-${project.version}</finalName>
-       		   <descriptors>
-       			     <descriptor>src/main/assembly/nativebin.xml</descriptor>
-       		   </descriptors>
-      	  	</configuration>
-        </plugin>
-    </plugins>
-  </build>
-  
-    </profile>
-
-    <profile>
-      <id>windows-amd64</id>
-      <activation>
-        <os>
-          <family>windows</family>
-          <arch>amd64</arch>
-        </os>
-      </activation>
-    <dependencies>
-  	    <dependency>
-  		    <artifactId>katovmapi-windows-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>dll</type>
-      	</dependency>
-  	    <dependency>
-  		    <artifactId>cjvmti-windows-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>dll</type>
-      	</dependency>
-  </dependencies>
-        <properties>
-            <assembly.format>zip</assembly.format>
-	    <os.family>windows</os.family>
-        </properties>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-       		<configuration>
-       		<finalName>apache-kato-${project.version}</finalName>
-       		   <descriptors>
-       			     <descriptor>src/main/assembly/nativebin.xml</descriptor>
-       		   </descriptors>
-      	  	</configuration>
-        </plugin>
-    </plugins>
-  </build>
-  
-    </profile>
-
-    <profile>
-      <id>windows-32</id>
-      <activation>
-        <os>
-          <family>windows</family>
-          <arch>x86</arch>
-        </os>
-      </activation>
-    <dependencies>
-  	    <dependency>
-  		    <artifactId>katovmapi-windows-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>dll</type>
-      	</dependency>
-  	    <dependency>
-  		    <artifactId>cjvmti-windows-x86</artifactId>
-      		<groupId>org.apache.kato.native</groupId>
-  	    	<version>M1-incubating</version>
-  		    <type>dll</type>
-      	</dependency>
-  </dependencies>
-        <properties>
-            <assembly.format>zip</assembly.format>
-	    <os.family>windows</os.family>
-        </properties>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-       		<configuration>
-       		<finalName>apache-kato-${project.version}</finalName>
-       		   <descriptors>
-       			     <descriptor>src/main/assembly/nativebin.xml</descriptor>
-       		   </descriptors>
-      	  	</configuration>
-        </plugin>
-    </plugins>
-  </build>
-  
-    </profile>
+	</profiles>
 
-  </profiles>
- 
 </project>