source: trunk/autoquest-core-usability/pom.xml @ 920

Last change on this file since 920 was 920, checked in by pharms, 12 years ago
  • rename to autoquest
File size: 1.3 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  <parent>
3    <groupId>de.ugoe.cs.autoquest</groupId>
4    <artifactId>autoquest</artifactId>
5    <version>0.0.1-SNAPSHOT</version>
6  </parent>
7  <modelVersion>4.0.0</modelVersion>
8  <artifactId>autoquest-core-usability</artifactId>
9  <name>autoquest-core-usability</name>
10  <scm>
11    <url>${autoquest-scm-trunk-dir}/autoquest-core-usability</url>
12  </scm>
13  <dependencies>
14    <dependency>
15        <groupId>de.ugoe.cs.autoquest</groupId>
16        <artifactId>autoquest-core-tasktrees</artifactId>
17        <version>${project.parent.version}</version>
18    </dependency>
19  </dependencies>
20  <build>
21    <plugins>
22      <plugin>
23        <groupId>org.jvnet.jaxb2.maven2</groupId>
24        <artifactId>maven-jaxb2-plugin</artifactId>
25        <version>0.8.2</version>
26        <configuration>
27          <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
28        </configuration>
29        <executions>
30          <execution>
31            <goals>
32              <goal>generate</goal>
33            </goals>
34          </execution>
35        </executions>
36      </plugin>
37    </plugins>
38  </build>
39</project>
Note: See TracBrowser for help on using the repository browser.