source: trunk/quest-core-usability/pom.xml @ 472

Last change on this file since 472 was 472, checked in by pharms, 12 years ago

corrected project settings

File size: 1.4 KB
Line 
1<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">
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>de.ugoe.cs.quest</groupId>
4  <artifactId>quest-core-usability</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-core-usability</name>
7  <scm>
8    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usability</url>
9  </scm>
10  <dependencies>
11    <dependency>
12        <groupId>de.ugoe.cs.quest</groupId>
13        <artifactId>quest-core-tasktrees</artifactId>
14        <version>0.0.1-SNAPSHOT</version>
15    </dependency>
16  </dependencies>
17  <build>
18    <plugins>
19      <plugin>
20        <groupId>org.jvnet.jaxb2.maven2</groupId>
21        <artifactId>maven-jaxb2-plugin</artifactId>
22        <version>0.8.2</version>
23        <configuration>
24          <generatePackage>de.ugoe.cs.quest.usability</generatePackage>
25        </configuration>
26        <executions>
27          <execution>
28            <goals>
29              <goal>generate</goal>
30            </goals>
31          </execution>
32        </executions>
33      </plugin>
34      <plugin>
35        <artifactId>maven-compiler-plugin</artifactId>
36        <version>2.5.1</version>
37        <configuration>
38          <source>1.6</source>
39          <target>1.6</target>
40        </configuration>
41      </plugin>
42    </plugins>
43  </build>
44</project>
Note: See TracBrowser for help on using the repository browser.