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

Last change on this file was 2259, checked in by pharms, 5 years ago

made this run with java 11 and maven 3.6

File size: 2.8 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.2.4-SNAPSHOT</version>
6        <relativePath>../autoquest/pom.xml</relativePath>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>autoquest-core-usability</artifactId>
10    <name>autoquest-core-usability</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <scm>
18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-core-usability</url>
19        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-core-usability</connection>
20    </scm>
21    <dependencies>
22        <dependency>
23            <groupId>de.ugoe.cs.autoquest</groupId>
24            <artifactId>autoquest-core-tasktrees</artifactId>
25            <version>${project.parent.version}</version>
26        </dependency>
27        <dependency>
28            <groupId>org.apache.commons</groupId>
29            <artifactId>commons-math3</artifactId>
30            <version>3.2</version>
31        </dependency>
32        <dependency>
33            <groupId>javax.xml.bind</groupId>
34            <artifactId>jaxb-api</artifactId>
35            <version>2.2.11</version>
36        </dependency>
37        <dependency>
38            <groupId>com.sun.xml.bind</groupId>
39            <artifactId>jaxb-core</artifactId>
40            <version>2.2.11</version>
41        </dependency>
42        <dependency>
43            <groupId>com.sun.xml.bind</groupId>
44            <artifactId>jaxb-impl</artifactId>
45            <version>2.2.11</version>
46        </dependency>
47        <dependency>
48            <groupId>javax.activation</groupId>
49            <artifactId>activation</artifactId>
50            <version>1.1.1</version>
51        </dependency>
52    </dependencies>
53    <build>
54        <plugins>
55            <plugin>
56                <groupId>org.jvnet.jaxb2.maven2</groupId>
57                <artifactId>maven-jaxb2-plugin</artifactId>
58                <version>0.14.0</version>
59                <configuration>
60                    <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
61                </configuration>
62                <executions>
63                    <execution>
64                        <goals>
65                            <goal>generate</goal>
66                        </goals>
67                    </execution>
68                </executions>
69            </plugin>
70        </plugins>
71    </build>
72</project>
Note: See TracBrowser for help on using the repository browser.