| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|---|
| 3 | <modelVersion>4.0.0</modelVersion>
|
|---|
| 4 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 5 | <artifactId>quest-ui-core</artifactId>
|
|---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 7 | <name>quest-ui-core</name>
|
|---|
| 8 | <scm>
|
|---|
| 9 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>
|
|---|
| 10 | </scm>
|
|---|
| 11 | <repositories>
|
|---|
| 12 | <repository>
|
|---|
| 13 | <id>swt-repo</id>
|
|---|
| 14 | <url>https://swt-repo.googlecode.com/svn/repo</url>
|
|---|
| 15 | </repository>
|
|---|
| 16 | <repository>
|
|---|
| 17 | <id>quest-repo</id>
|
|---|
| 18 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
|
|---|
| 19 | </repository>
|
|---|
| 20 | </repositories>
|
|---|
| 21 | <dependencies>
|
|---|
| 22 | <dependency>
|
|---|
| 23 | <groupId>de.ugoe.cs</groupId>
|
|---|
| 24 | <artifactId>java-utils</artifactId>
|
|---|
| 25 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 26 | </dependency>
|
|---|
| 27 | <dependency>
|
|---|
| 28 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 29 | <artifactId>quest-core-events</artifactId>
|
|---|
| 30 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 31 | </dependency>
|
|---|
| 32 | <dependency>
|
|---|
| 33 | <groupId>net.sf.jung</groupId>
|
|---|
| 34 | <artifactId>jung-visualization</artifactId>
|
|---|
| 35 | <version>2.0.1</version>
|
|---|
| 36 | </dependency>
|
|---|
| 37 | <dependency>
|
|---|
| 38 | <groupId>net.sf.jung</groupId>
|
|---|
| 39 | <artifactId>jung-graph-impl</artifactId>
|
|---|
| 40 | <version>2.0.1</version>
|
|---|
| 41 | </dependency>
|
|---|
| 42 | <dependency>
|
|---|
| 43 | <groupId>log4j</groupId>
|
|---|
| 44 | <artifactId>log4j</artifactId>
|
|---|
| 45 | <version>1.2.17</version>
|
|---|
| 46 | </dependency>
|
|---|
| 47 | <dependency>
|
|---|
| 48 | <groupId>commons-codec</groupId>
|
|---|
| 49 | <artifactId>commons-codec</artifactId>
|
|---|
| 50 | <version>1.6</version>
|
|---|
| 51 | </dependency>
|
|---|
| 52 | <dependency>
|
|---|
| 53 | <groupId>net.sf.jopt-simple</groupId>
|
|---|
| 54 | <artifactId>jopt-simple</artifactId>
|
|---|
| 55 | <version>4.3</version>
|
|---|
| 56 | </dependency>
|
|---|
| 57 | <dependency>
|
|---|
| 58 | <groupId>jdom</groupId>
|
|---|
| 59 | <artifactId>jdom</artifactId>
|
|---|
| 60 | <version>1.1</version>
|
|---|
| 61 | </dependency>
|
|---|
| 62 | <dependency>
|
|---|
| 63 | <groupId>${swt.groupId}</groupId>
|
|---|
| 64 | <artifactId>${swt.artifactId}</artifactId>
|
|---|
| 65 | <version>3.8</version>
|
|---|
| 66 | </dependency>
|
|---|
| 67 | <dependency>
|
|---|
| 68 | <groupId>org.eclipse</groupId>
|
|---|
| 69 | <artifactId>ui-forms</artifactId>
|
|---|
| 70 | <version>3.5</version>
|
|---|
| 71 | </dependency>
|
|---|
| 72 | <dependency>
|
|---|
| 73 | <groupId>edu.umd.cs</groupId>
|
|---|
| 74 | <artifactId>guitar-model-core</artifactId>
|
|---|
| 75 | <version>1.0</version>
|
|---|
| 76 | </dependency>
|
|---|
| 77 | </dependencies>
|
|---|
| 78 |
|
|---|
| 79 | <profiles>
|
|---|
| 80 | <profile>
|
|---|
| 81 | <id>Windows x86</id>
|
|---|
| 82 | <activation>
|
|---|
| 83 | <os>
|
|---|
| 84 | <family>windows</family>
|
|---|
| 85 | <arch>x86</arch>
|
|---|
| 86 | </os>
|
|---|
| 87 | </activation>
|
|---|
| 88 | <properties>
|
|---|
| 89 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 90 | <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
|
|---|
| 91 | </properties>
|
|---|
| 92 | </profile>
|
|---|
| 93 | <profile>
|
|---|
| 94 | <id>Windows amd64</id>
|
|---|
| 95 | <activation>
|
|---|
| 96 | <os>
|
|---|
| 97 | <family>windows</family>
|
|---|
| 98 | <arch>amd64</arch>
|
|---|
| 99 | </os>
|
|---|
| 100 | </activation>
|
|---|
| 101 | <properties>
|
|---|
| 102 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 103 | <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
|
|---|
| 104 | </properties>
|
|---|
| 105 | </profile>
|
|---|
| 106 | <profile>
|
|---|
| 107 | <id>Linux x86</id>
|
|---|
| 108 | <activation>
|
|---|
| 109 | <os>
|
|---|
| 110 | <family>linux</family>
|
|---|
| 111 | <arch>x86</arch>
|
|---|
| 112 | </os>
|
|---|
| 113 | </activation>
|
|---|
| 114 | <properties>
|
|---|
| 115 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 116 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
|---|
| 117 | </properties>
|
|---|
| 118 | </profile>
|
|---|
| 119 | <profile>
|
|---|
| 120 | <id>Linux i386</id>
|
|---|
| 121 | <activation>
|
|---|
| 122 | <os>
|
|---|
| 123 | <family>linux</family>
|
|---|
| 124 | <arch>i386</arch>
|
|---|
| 125 | </os>
|
|---|
| 126 | </activation>
|
|---|
| 127 | <properties>
|
|---|
| 128 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 129 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
|---|
| 130 | </properties>
|
|---|
| 131 | </profile>
|
|---|
| 132 | <profile>
|
|---|
| 133 | <id>Linux x86_64</id>
|
|---|
| 134 | <activation>
|
|---|
| 135 | <os>
|
|---|
| 136 | <family>linux</family>
|
|---|
| 137 | <arch>x86_64</arch>
|
|---|
| 138 | </os>
|
|---|
| 139 | </activation>
|
|---|
| 140 | <properties>
|
|---|
| 141 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 142 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
|---|
| 143 | </properties>
|
|---|
| 144 | </profile>
|
|---|
| 145 | <profile>
|
|---|
| 146 | <id>Linux amd64</id>
|
|---|
| 147 | <activation>
|
|---|
| 148 | <os>
|
|---|
| 149 | <family>linux</family>
|
|---|
| 150 | <arch>amd64</arch>
|
|---|
| 151 | </os>
|
|---|
| 152 | </activation>
|
|---|
| 153 | <properties>
|
|---|
| 154 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 155 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
|---|
| 156 | </properties>
|
|---|
| 157 | </profile>
|
|---|
| 158 | <profile>
|
|---|
| 159 | <id>Linux ppc64</id>
|
|---|
| 160 | <activation>
|
|---|
| 161 | <os>
|
|---|
| 162 | <family>linux</family>
|
|---|
| 163 | <arch>ppc64</arch>
|
|---|
| 164 | </os>
|
|---|
| 165 | </activation>
|
|---|
| 166 | <properties>
|
|---|
| 167 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
|---|
| 168 | <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
|
|---|
| 169 | </properties>
|
|---|
| 170 | </profile>
|
|---|
| 171 | </profiles>
|
|---|
| 172 |
|
|---|
| 173 | <build>
|
|---|
| 174 | <plugins>
|
|---|
| 175 | <plugin>
|
|---|
| 176 | <artifactId>maven-compiler-plugin</artifactId>
|
|---|
| 177 | <version>2.3.2</version>
|
|---|
| 178 | <configuration>
|
|---|
| 179 | <source>1.6</source>
|
|---|
| 180 | <target>1.6</target>
|
|---|
| 181 | </configuration>
|
|---|
| 182 | </plugin>
|
|---|
| 183 | </plugins>
|
|---|
| 184 | </build>
|
|---|
| 185 | </project> |
|---|