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

Last change on this file since 920 was 920, checked in by pharms, 12 years ago
  • rename to autoquest
  • Property svn:mime-type set to text/plain
File size: 7.3 KB
RevLine 
[579]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>
[757]6  <parent>
[920]7    <groupId>de.ugoe.cs.autoquest</groupId>
8    <artifactId>autoquest</artifactId>
[757]9    <version>0.0.1-SNAPSHOT</version>
10  </parent>
[579]11  <modelVersion>4.0.0</modelVersion>
[920]12  <artifactId>autoquest-runner</artifactId>
13  <name>autoquest-runner</name>
[579]14  <scm>
[920]15    <url>${autoquest-scm-trunk-dir}/autoquest-runner</url>
[579]16  </scm>
17  <dependencies>
18    <dependency>
19      <groupId>de.ugoe.cs</groupId>
20      <artifactId>java-utils</artifactId>
21      <version>0.0.1-SNAPSHOT</version>
22    </dependency>
23    <dependency>
[920]24      <groupId>de.ugoe.cs.autoquest</groupId>
25      <artifactId>autoquest-plugin-core</artifactId>
[794]26      <version>${project.parent.version}</version>
[579]27    </dependency>
28    <dependency>
[920]29      <groupId>de.ugoe.cs.autoquest</groupId>
30      <artifactId>autoquest-ui-core</artifactId>
[794]31      <version>${project.parent.version}</version>
[579]32    </dependency>
33    <dependency>
[920]34      <groupId>de.ugoe.cs.autoquest</groupId>
35      <artifactId>autoquest-ui-swt</artifactId>
[794]36      <version>${project.parent.version}</version>
[579]37    </dependency>
38    <dependency>
39      <groupId>net.sf.jopt-simple</groupId>
40      <artifactId>jopt-simple</artifactId>
41      <version>4.3</version>
42    </dependency>
[582]43    <dependency>
[920]44      <groupId>de.ugoe.cs.autoquest</groupId>
45      <artifactId>autoquest-plugin-guitar</artifactId>
[794]46      <version>${project.parent.version}</version>
[582]47    </dependency>
48    <dependency>
[920]49      <groupId>de.ugoe.cs.autoquest</groupId>
50      <artifactId>autoquest-plugin-jfc</artifactId>
[794]51      <version>${project.parent.version}</version>
[582]52    </dependency>
53    <dependency>
[920]54      <groupId>de.ugoe.cs.autoquest</groupId>
55      <artifactId>autoquest-plugin-mfc</artifactId>
[794]56      <version>${project.parent.version}</version>
[582]57    </dependency>
58    <dependency>
[920]59      <groupId>de.ugoe.cs.autoquest</groupId>
60      <artifactId>autoquest-plugin-php</artifactId>
[794]61      <version>${project.parent.version}</version>
[582]62    </dependency>
[673]63    <dependency>
64      <groupId>log4j</groupId>
65      <artifactId>log4j</artifactId>
66      <version>1.2.17</version>
67    </dependency>
[579]68  </dependencies>
69  <build>
70    <pluginManagement>
71      <plugins>
72        <plugin>
73          <groupId>org.eclipse.m2e</groupId>
74          <artifactId>lifecycle-mapping</artifactId>
75          <version>1.0.0</version>
76          <configuration>
77            <lifecycleMappingMetadata>
78              <pluginExecutions>
79                <pluginExecution>
80                  <pluginExecutionFilter>
81                    <groupId>org.apache.maven.plugins</groupId>
82                    <artifactId>maven-dependency-plugin</artifactId>
83                    <versionRange>[1.0.0,)</versionRange>
84                    <goals>
85                      <goal>get</goal>
86                    </goals>
87                  </pluginExecutionFilter>
88                  <action>
89                    <ignore />
90                  </action>
91                </pluginExecution>
92                <pluginExecution>
93                  <pluginExecutionFilter>
94                    <groupId>org.apache.maven.plugins</groupId>
95                    <artifactId>maven-dependency-plugin</artifactId>
96                    <versionRange>[1.0.0,)</versionRange>
97                    <goals>
98                      <goal>unpack</goal>
99                    </goals>
100                  </pluginExecutionFilter>
101                  <action>
102                    <ignore />
103                  </action>
104                </pluginExecution>
105              </pluginExecutions>
106            </lifecycleMappingMetadata>
107          </configuration>
108        </plugin>
109      </plugins>
110    </pluginManagement>
111    <plugins>
112      <plugin>
113        <groupId>org.apache.maven.plugins</groupId>
114        <artifactId>maven-jar-plugin</artifactId>
115        <configuration>
116          <archive>
117            <manifest>
118              <addClasspath>true</addClasspath>
119              <classpathPrefix>lib/</classpathPrefix>
[920]120              <mainClass>de.ugoe.cs.autoquest.ui.Runner</mainClass>
[579]121            </manifest>
122          </archive>
123        </configuration>
124      </plugin>
125      <plugin>
126        <groupId>org.apache.maven.plugins</groupId>
127        <artifactId>maven-dependency-plugin</artifactId>
128        <version>2.4</version>
129        <executions>
130          <execution>
[585]131            <id>get-jfc-plugin-config</id>
132            <phase>process-classes</phase>
133            <goals>
134              <goal>unpack</goal>
135            </goals>
136            <configuration>
137              <artifactItems>
138                <artifactItem>
[920]139                  <groupId>de.ugoe.cs.autoquest</groupId>
140                  <artifactId>autoquest-plugin-jfc</artifactId>
[794]141                  <version>${project.parent.version}</version>
[585]142                  <classifier>config</classifier>
143                  <type>zip</type>
144                  <outputDirectory>${project.build.directory}/data</outputDirectory>
145                </artifactItem>
146              </artifactItems>
147            </configuration>
148          </execution>
149          <execution>
[581]150            <id>get-mfc-plugin-config</id>
151            <phase>process-classes</phase>
152            <goals>
153              <goal>unpack</goal>
154            </goals>
155            <configuration>
156              <artifactItems>
157                <artifactItem>
[920]158                  <groupId>de.ugoe.cs.autoquest</groupId>
159                  <artifactId>autoquest-plugin-mfc</artifactId>
[794]160                  <version>${project.parent.version}</version>
[581]161                  <classifier>config</classifier>
162                  <type>zip</type>
163                  <outputDirectory>${project.build.directory}/data</outputDirectory>
164                </artifactItem>
165              </artifactItems>
166            </configuration>
167          </execution>
[584]168          <execution>
169            <id>get-php-plugin-config</id>
170            <phase>process-classes</phase>
171            <goals>
172              <goal>unpack</goal>
173            </goals>
174            <configuration>
175              <artifactItems>
176                <artifactItem>
[920]177                  <groupId>de.ugoe.cs.autoquest</groupId>
178                  <artifactId>autoquest-plugin-php</artifactId>
[794]179                  <version>${project.parent.version}</version>
[584]180                  <classifier>config</classifier>
181                  <type>zip</type>
182                  <outputDirectory>${project.build.directory}/data</outputDirectory>
183                </artifactItem>
184              </artifactItems>
185            </configuration>
186          </execution>
[579]187        </executions>
188      </plugin>
189      <plugin>
190        <artifactId>maven-assembly-plugin</artifactId>
191        <version>2.2-beta-2</version>
192        <configuration>
193          <descriptors>
194            <descriptor>src/main/assembly/bin.xml</descriptor>
195          </descriptors>
196        </configuration>
197        <executions>
198          <execution>
199            <id>make-assembly</id>
200            <phase>package</phase>
201            <goals>
202              <goal>single</goal>
203            </goals>
204          </execution>
205        </executions>
206      </plugin>
207    </plugins>
208  </build>
[526]209</project>
Note: See TracBrowser for help on using the repository browser.