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

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

Initial import.

File size: 1.6 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.usability</groupId>
4  <artifactId>usabilityevaluationmanager</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>UsabilityEvaluationManager</name>
7  <scm>
8    <url>https://www.trex.informatik.uni-goettingen.de/svn/swephd/pharms/tasktree/trunk/UsabilityEvaluationManager</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    <dependency>
17        <groupId>junit</groupId>
18        <artifactId>junit</artifactId>
19        <version>4.8.1</version>
20        <scope>test</scope>
21    </dependency>
22  </dependencies>
23  <build>
24    <plugins>
25      <plugin>
26        <groupId>org.jvnet.jaxb2.maven2</groupId>
27        <artifactId>maven-jaxb2-plugin</artifactId>
28        <version>0.8.2</version>
29        <configuration>
30          <generatePackage>de.ugoe.cs.quest.usability</generatePackage>
31        </configuration>
32        <executions>
33          <execution>
34            <goals>
35              <goal>generate</goal>
36            </goals>
37          </execution>
38        </executions>
39      </plugin>
40      <plugin>
41        <artifactId>maven-compiler-plugin</artifactId>
42        <version>2.5.1</version>
43        <configuration>
44          <source>1.6</source>
45          <target>1.6</target>
46        </configuration>
47      </plugin>
48    </plugins>
49  </build>
50</project>
Note: See TracBrowser for help on using the repository browser.