source: trunk/autoquest-plugin-alignment/pom.xml @ 1524

Last change on this file since 1524 was 1524, checked in by pharms, 10 years ago
  • preparation for release of 0.1.0
File size: 3.1 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    </parent>
11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>autoquest-plugin-alignment</artifactId>
13    <name>autoquest-plugin-alignment</name>
14    <licenses>
15        <license>
16            <name>The Apache Software License, Version 2.0</name>
17            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18        </license>
19    </licenses>
20    <scm>
21        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
22        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
23    </scm>
24    <dependencies>
25        <dependency>
26            <groupId>org.apache.maven.plugins</groupId>
27            <artifactId>maven-resources-plugin</artifactId>
28            <version>2.4.3</version>
29        </dependency>
30   
31        <dependency>
32            <groupId>de.ugoe.cs</groupId>
33            <artifactId>java-utils</artifactId>
34            <version>0.0.1-SNAPSHOT</version>
35        </dependency>
36        <dependency>
37            <groupId>de.ugoe.cs.autoquest</groupId>
38            <artifactId>autoquest-plugin-core</artifactId>
39            <version>${project.parent.version}</version>
40        </dependency>
41        <dependency>
42            <groupId>de.ugoe.cs.autoquest</groupId>
43            <artifactId>autoquest-core-events</artifactId>
44            <version>${project.parent.version}</version>
45        </dependency>
46        <dependency>
47            <groupId>de.ugoe.cs.autoquest</groupId>
48            <artifactId>autoquest-core-usageprofiles</artifactId>
49        </dependency>
50        <dependency>
51            <groupId>de.ugoe.cs.autoquest</groupId>
52            <artifactId>autoquest-misc</artifactId>
53            <version>${project.parent.version}</version>
54        </dependency>
55        <dependency>
56                <groupId>de.ugoe.cs.autoquest</groupId>
57                <artifactId>autoquest-core-tasktrees</artifactId>
58                <version>${project.parent.version}</version>
59        </dependency>
60    </dependencies>
61    <build>
62        <plugins>
63            <plugin>
64                <groupId>org.apache.maven.plugins</groupId>
65                <artifactId>maven-jar-plugin</artifactId>
66                <configuration>
67                    <archive>
68                        <manifest>
69                            <addClasspath>true</addClasspath>
70                        </manifest>
71                    </archive>
72                </configuration>
73            </plugin>
74        </plugins>
75    </build>
76    <dependencyManagement>
77        <dependencies>
78                <dependency>
79                        <groupId>de.ugoe.cs.autoquest</groupId>
80                        <artifactId>autoquest-core-usageprofiles</artifactId>
81                        <version>${project.parent.version}</version>
82                </dependency>
83        </dependencies>
84    </dependencyManagement>
85</project>
Note: See TracBrowser for help on using the repository browser.