summaryrefslogtreecommitdiff
path: root/trunk/pdf-over-gui/pom.xml
diff options
context:
space:
mode:
authortkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-07 14:52:00 +0000
committertkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-07 14:52:00 +0000
commit94bf81d31e74a209d60f2fd4f1f20448770bf1a0 (patch)
treeee0a3ebc6e659360cbf822bf428034c33527ce39 /trunk/pdf-over-gui/pom.xml
parentef8b65e36085eb8d113620cb91ae1f0b2695eea2 (diff)
downloadpdf-over-94bf81d31e74a209d60f2fd4f1f20448770bf1a0.tar.gz
pdf-over-94bf81d31e74a209d60f2fd4f1f20448770bf1a0.tar.bz2
pdf-over-94bf81d31e74a209d60f2fd4f1f20448770bf1a0.zip
Refactoring
git-svn-id: https://svn.iaik.tugraz.at/svn/egiz/prj/current/12PDF-OVER-4.0@12276 3a0b52a2-8410-0410-bc02-ff6273a87459
Diffstat (limited to 'trunk/pdf-over-gui/pom.xml')
-rw-r--r--trunk/pdf-over-gui/pom.xml104
1 files changed, 104 insertions, 0 deletions
diff --git a/trunk/pdf-over-gui/pom.xml b/trunk/pdf-over-gui/pom.xml
new file mode 100644
index 00000000..e8d8f53a
--- /dev/null
+++ b/trunk/pdf-over-gui/pom.xml
@@ -0,0 +1,104 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>pdf-over</artifactId>
+ <groupId>a-sit.at</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+ <artifactId>pdf-over-gui</artifactId>
+ <name>PDF-Over GUI</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.swt</groupId>
+ <artifactId>${swt.artifactId}</artifactId>
+ <version>3.8</version>
+ </dependency>
+ </dependencies>
+
+ <profiles>
+ <profile>
+ <id>linux</id>
+ <activation>
+ <os>
+ <name>linux</name>
+ <arch>x86</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
+ </properties>
+ </profile>
+ <profile>
+ <id>linux-64</id>
+ <activation>
+ <os>
+ <name>linux</name>
+ <arch>amd64</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
+ </properties>
+ </profile>
+
+ <profile>
+ <id>windows</id>
+ <activation>
+ <os>
+ <family>windows</family>
+ <arch>x86</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
+ </properties>
+ </profile>
+ <profile>
+ <id>windows-64</id>
+ <activation>
+ <os>
+ <family>windows</family>
+ <arch>amd64</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
+ </properties>
+ </profile>
+
+ <profile>
+ <id>mac</id>
+ <activation>
+ <os>
+ <name>mac os x</name>
+ <arch>x86</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.cocoa.macosx</swt.artifactId>
+ </properties>
+ </profile>
+ <profile>
+ <id>mac-64</id>
+ <activation>
+ <os>
+ <name>mac os x</name>
+ <arch>amd64</arch>
+ </os>
+ </activation>
+ <properties>
+ <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId>
+ </properties>
+ </profile>
+ </profiles>
+
+ <repositories>
+ <repository>
+ <id>swt-repo</id>
+ <url>https://swt-repo.googlecode.com/svn/repo/</url>
+ </repository>
+ </repositories>
+</project> \ No newline at end of file