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/maven-v4_0_0.xsd">
3  <modelVersion>4.0.0</modelVersion>
4  <groupId>edu.tum.cs.isabelle</groupId>
5  <artifactId>ci-extras</artifactId>
6  <packaging>jar</packaging>
7  <version>1.0-SNAPSHOT</version>
8  <name>ci-extras</name>
9  <url>http://maven.apache.org</url>
10  <dependencies>
11    <dependency>
12      <groupId>org.apache.commons</groupId>
13      <artifactId>commons-configuration2</artifactId>
14      <version>2.0</version>
15    </dependency>
16    <dependency>
17      <groupId>javax.mail</groupId>
18      <artifactId>mail</artifactId>
19      <version>1.4.7</version>
20    </dependency>
21    <dependency>
22      <groupId>javax.activation</groupId>
23      <artifactId>activation</artifactId>
24      <version>1.1.1</version>
25    </dependency>
26  </dependencies>
27
28  <build>
29    <plugins>
30      <plugin>
31        <artifactId>maven-assembly-plugin</artifactId>
32        <configuration>
33          <descriptorRefs>
34            <descriptorRef>jar-with-dependencies</descriptorRef>
35          </descriptorRefs>
36        </configuration>
37        <executions>
38          <execution>
39            <phase>package</phase>
40              <goals>
41                <goal>single</goal>
42              </goals>
43          </execution>
44        </executions>
45      </plugin>
46      <plugin>
47        <groupId>org.apache.maven.plugins</groupId>
48        <artifactId>maven-dependency-plugin</artifactId>
49        <version>2.10</version>
50        <executions>
51          <execution>
52            <id>copy-dependencies-sources</id>
53            <phase>package</phase>
54            <goals>
55              <goal>copy-dependencies</goal>
56            </goals>
57            <configuration>
58              <outputDirectory>${project.basedir}/contrib</outputDirectory>
59              <classifier>sources</classifier>
60            </configuration>
61          </execution>
62          <execution>
63            <id>copy-dependencies</id>
64            <phase>package</phase>
65            <goals>
66              <goal>copy-dependencies</goal>
67            </goals>
68            <configuration>
69              <outputDirectory>${project.basedir}/contrib</outputDirectory>
70            </configuration>
71          </execution>
72        </executions>
73      </plugin>
74    </plugins>
75  </build>
76</project>
77