aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/ardor3d-swt/pom.xml
diff options
context:
space:
mode:
authorneothemachine <[email protected]>2012-12-05 17:03:16 +0100
committerneothemachine <[email protected]>2012-12-05 17:03:16 +0100
commit9dd02f103042cb8a196f8a3ed2278da443e345bf (patch)
tree422449f0c62ff9518316ce5d4219bb2b12f0ed15 /trunk/ardor3d-swt/pom.xml
parent2b26b12fd794de0f03a064a10024a3d9f5583756 (diff)
move all files from trunk to root folder
Diffstat (limited to 'trunk/ardor3d-swt/pom.xml')
-rw-r--r--trunk/ardor3d-swt/pom.xml141
1 files changed, 0 insertions, 141 deletions
diff --git a/trunk/ardor3d-swt/pom.xml b/trunk/ardor3d-swt/pom.xml
deleted file mode 100644
index 09aa143..0000000
--- a/trunk/ardor3d-swt/pom.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-
-<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>
- <parent>
- <groupId>com.ardor3d</groupId>
- <artifactId>ardor3d</artifactId>
- <relativePath>../pom.xml</relativePath>
- <version>0.9-SNAPSHOT</version>
- </parent>
-
- <artifactId>ardor3d-swt</artifactId>
- <packaging>bundle</packaging>
- <name>Ardor 3D SWT</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>ardor3d-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymockclassextension</artifactId>
- </dependency>
- <dependency>
- <groupId>org.eclipse.swt</groupId>
- <artifactId>swt</artifactId>
- <classifier>${swt.classifier}</classifier>
- </dependency>
- </dependencies>
-
- <profiles>
- <profile>
- <id>linux-x86</id>
- <activation>
- <os>
- <arch>i386</arch>
- <name>linux</name>
- </os>
- </activation>
- <properties>
- <swt.classifier>linux-x86</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>linux-x86_64</id>
- <activation>
- <os>
- <arch>amd64</arch>
- <name>Linux</name>
- </os>
- </activation>
- <properties>
- <swt.classifier>linux-x86_64</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>solaris-sparc</id>
- <activation>
- <os>
- <arch>sparc</arch>
- <name>SunOS</name>
- </os>
- </activation>
- <properties>
- <swt.classifier>solaris-sparc</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>solaris-x86</id>
- <activation>
- <os>
- <arch>x86</arch>
- <name>SunOS</name>
- </os>
- </activation>
- <properties>
- <swt.classifier>solaris-x86</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>macosx-cocoa-64</id>
- <activation>
- <os>
- <arch>x86_64</arch>
- <family>mac</family>
- </os>
- </activation>
- <properties>
- <swt.classifier>mac-x86_64</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>macosx-cocoa</id>
- <activation>
- <os>
- <arch>x86</arch>
- <family>mac</family>
- </os>
- </activation>
- <properties>
- <swt.classifier>mac-x86</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>win32</id>
- <activation>
- <os>
- <arch>x86</arch>
- <family>windows</family>
- </os>
- </activation>
- <properties>
- <swt.classifier>win32-x86</swt.classifier>
- </properties>
- </profile>
- <profile>
- <id>win64</id>
- <activation>
- <os>
- <arch>amd64</arch>
- <family>windows</family>
- </os>
- </activation>
- <properties>
- <swt.classifier>win32-x86_64</swt.classifier>
- </properties>
- </profile>
- </profiles>
-</project>