[1326] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
| 3 | <modelVersion>4.0.0</modelVersion>
|
---|
| 4 | <artifactId>autoquest-plugin-usability2</artifactId>
|
---|
| 5 |
|
---|
| 6 | <parent>
|
---|
| 7 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 8 | <artifactId>autoquest</artifactId>
|
---|
| 9 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 10 | </parent>
|
---|
| 11 |
|
---|
| 12 | <licenses>
|
---|
| 13 | <license>
|
---|
| 14 | <name>The Apache Software License, Version 2.0</name>
|
---|
| 15 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
---|
| 16 | </license>
|
---|
| 17 | </licenses>
|
---|
| 18 |
|
---|
| 19 | <scm>
|
---|
| 20 | <url>${autoquest-scm-trunk-dir}/autoquest-core-usability-evaluation</url>
|
---|
| 21 | </scm>
|
---|
| 22 |
|
---|
| 23 | <dependencies>
|
---|
| 24 | <dependency>
|
---|
| 25 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 26 | <artifactId>autoquest-core-tasktrees</artifactId>
|
---|
| 27 | <version>${project.parent.version}</version>
|
---|
| 28 | </dependency>
|
---|
| 29 | <dependency>
|
---|
| 30 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 31 | <artifactId>autoquest-plugin-core</artifactId>
|
---|
| 32 | <version>${project.parent.version}</version>
|
---|
| 33 | </dependency>
|
---|
| 34 | <dependency>
|
---|
| 35 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 36 | <artifactId>autoquest-plugin-html</artifactId>
|
---|
| 37 | <version>${project.parent.version}</version>
|
---|
| 38 | </dependency>
|
---|
| 39 |
|
---|
| 40 | <dependency>
|
---|
| 41 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 42 | <artifactId>autoquest-test-utils</artifactId>
|
---|
| 43 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 44 | </dependency>
|
---|
| 45 |
|
---|
| 46 | <dependency>
|
---|
| 47 | <groupId>com.google.guava</groupId>
|
---|
| 48 | <artifactId>guava</artifactId>
|
---|
| 49 | <version>14.0-rc1</version>
|
---|
| 50 | </dependency>
|
---|
| 51 | <dependency>
|
---|
| 52 | <groupId>org.jodd</groupId>
|
---|
| 53 | <artifactId>jodd-props</artifactId>
|
---|
| 54 | <version>3.4.2</version>
|
---|
| 55 | </dependency>
|
---|
| 56 | <dependency>
|
---|
| 57 | <groupId>org.apache.commons</groupId>
|
---|
| 58 | <artifactId>commons-math3</artifactId>
|
---|
| 59 | <version>3.2</version>
|
---|
| 60 | </dependency>
|
---|
| 61 | </dependencies>
|
---|
| 62 |
|
---|
| 63 | <!--
|
---|
| 64 | <build>
|
---|
| 65 |
|
---|
| 66 | <plugins>
|
---|
| 67 | <plugin>
|
---|
| 68 | <groupId>org.jvnet.jaxb2.maven2</groupId>
|
---|
| 69 | <artifactId>maven-jaxb2-plugin</artifactId>
|
---|
| 70 | <version>0.8.2</version>
|
---|
| 71 | <configuration>
|
---|
| 72 | <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
|
---|
| 73 | </configuration>
|
---|
| 74 | <executions>
|
---|
| 75 | <execution>
|
---|
| 76 | <goals>
|
---|
| 77 | <goal>generate</goal>
|
---|
| 78 | </goals>
|
---|
| 79 | </execution>
|
---|
| 80 | </executions>
|
---|
| 81 | </plugin>
|
---|
| 82 | </plugins>
|
---|
| 83 |
|
---|
| 84 | </build>
|
---|
| 85 | -->
|
---|
| 86 |
|
---|
| 87 | </project> |
---|