source: trunk/autoquest-runner/pom.xml @ 1513

Last change on this file since 1513 was 1513, checked in by pharms, 10 years ago
  • added relative path to parent pom
  • Property svn:mime-type set to text/plain
File size: 3.4 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <parent>
7        <groupId>de.ugoe.cs.autoquest</groupId>
8        <artifactId>autoquest</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10        <relativePath>../autoquest/pom.xml</relativePath>
11    </parent>
12    <modelVersion>4.0.0</modelVersion>
13    <artifactId>autoquest-runner</artifactId>
14    <name>autoquest-runner</name>
15    <licenses>
16        <license>
17            <name>The Apache Software License, Version 2.0</name>
18            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19        </license>
20    </licenses>
21    <scm>
22        <url>${autoquest-scm-trunk-dir}/autoquest-runner</url>
23    </scm>
24    <dependencies>
25        <dependency>
26            <groupId>de.ugoe.cs</groupId>
27            <artifactId>java-utils</artifactId>
28            <version>0.0.1-SNAPSHOT</version>
29        </dependency>
30        <dependency>
31            <groupId>de.ugoe.cs.autoquest</groupId>
32            <artifactId>autoquest-plugin-core</artifactId>
33            <version>${project.parent.version}</version>
34        </dependency>
35        <dependency>
36            <groupId>de.ugoe.cs.autoquest</groupId>
37            <artifactId>autoquest-ui-core</artifactId>
38            <version>${project.parent.version}</version>
39        </dependency>
40        <dependency>
41            <groupId>de.ugoe.cs.autoquest</groupId>
42            <artifactId>autoquest-ui-swt</artifactId>
43            <version>${project.parent.version}</version>
44        </dependency>
45        <dependency>
46            <groupId>net.sf.jopt-simple</groupId>
47            <artifactId>jopt-simple</artifactId>
48            <version>4.3</version>
49        </dependency>
50        <dependency>
51            <groupId>log4j</groupId>
52            <artifactId>log4j</artifactId>
53            <version>1.2.17</version>
54        </dependency>
55    </dependencies>
56    <build>
57        <plugins>
58            <plugin>
59                <groupId>org.apache.maven.plugins</groupId>
60                <artifactId>maven-jar-plugin</artifactId>
61                <configuration>
62                    <archive>
63                        <manifest>
64                            <addClasspath>true</addClasspath>
65                            <classpathPrefix>lib/</classpathPrefix>
66                            <mainClass>de.ugoe.cs.autoquest.ui.Runner</mainClass>
67                        </manifest>
68                    </archive>
69                </configuration>
70            </plugin>
71            <plugin>
72                <artifactId>maven-assembly-plugin</artifactId>
73                <version>2.2-beta-2</version>
74                <configuration>
75                    <descriptors>
76                        <descriptor>src/main/assembly/bin.xml</descriptor>
77                        <descriptor>src/main/assembly/config.xml</descriptor>
78                    </descriptors>
79                </configuration>
80                <executions>
81                    <execution>
82                        <id>make-assembly</id>
83                        <phase>package</phase>
84                        <goals>
85                            <goal>single</goal>
86                        </goals>
87                    </execution>
88                </executions>
89            </plugin>
90        </plugins>
91    </build>
92</project>
Note: See TracBrowser for help on using the repository browser.