Changeset 757 for trunk/quest-plugin-guitar
- Timestamp:
- 09/04/12 10:39:27 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-guitar/pom.xml
r671 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-guitar</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-guitar</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-guitar</url> 10 13 </scm> 11 <repositories>12 <repository>13 <id>quest-repo</id>14 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>15 </repository>16 </repositories>17 14 <dependencies> 18 15 <dependency> … … 24 21 <groupId>de.ugoe.cs.quest</groupId> 25 22 <artifactId>quest-plugin-core</artifactId> 26 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 27 24 </dependency> 28 25 <dependency> 29 26 <groupId>de.ugoe.cs.quest</groupId> 30 27 <artifactId>quest-core-events</artifactId> 31 <version> 0.0.1-SNAPSHOT</version>28 <version>${parent.version}</version> 32 29 </dependency> 33 30 <dependency> 34 31 <groupId>de.ugoe.cs.quest</groupId> 35 32 <artifactId>quest-core-usageprofiles</artifactId> 36 <version> 0.0.1-SNAPSHOT</version>33 <version>${parent.version}</version> 37 34 </dependency> 38 35 <dependency> 39 36 <groupId>de.ugoe.cs.quest</groupId> 40 37 <artifactId>quest-misc</artifactId> 41 <version> 0.0.1-SNAPSHOT</version>38 <version>${parent.version}</version> 42 39 </dependency> 43 40 <dependency> … … 47 44 </dependency> 48 45 </dependencies> 49 <build>50 <plugins>51 <plugin>52 <artifactId>maven-compiler-plugin</artifactId>53 <version>2.3.2</version>54 <configuration>55 <source>1.6</source>56 <target>1.6</target>57 </configuration>58 </plugin>59 </plugins>60 </build>61 46 </project>
Note: See TracChangeset
for help on using the changeset viewer.