Make it possible to give the configuration file location as parameter.
[xudocci.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project 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         <modelVersion>4.0.0</modelVersion>
6
7         <groupId>net.pterodactylus</groupId>
8         <artifactId>xudocci</artifactId>
9         <version>0.1-SNAPSHOT</version>
10
11         <dependencies>
12                 <dependency>
13                         <groupId>com.google.guava</groupId>
14                         <artifactId>guava</artifactId>
15                         <version>14.0-rc1</version>
16                 </dependency>
17                 <dependency>
18                         <groupId>com.google.inject</groupId>
19                         <artifactId>guice</artifactId>
20                         <version>3.0</version>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.hamcrest</groupId>
24                         <artifactId>hamcrest-all</artifactId>
25                         <version>1.3</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.mockito</groupId>
29                         <artifactId>mockito-all</artifactId>
30                         <version>1.9.5</version>
31                         <scope>test</scope>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.codehaus.jackson</groupId>
35                         <artifactId>jackson-mapper-asl</artifactId>
36                         <version>1.9.13</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.codehaus.jackson</groupId>
40                         <artifactId>jackson-core-asl</artifactId>
41                         <version>1.9.13</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>junit</groupId>
45                         <artifactId>junit</artifactId>
46                         <version>4.11</version>
47                         <scope>test</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>com.lexicalscope.jewelcli</groupId>
51                         <artifactId>jewelcli</artifactId>
52                         <version>0.8.3</version>
53                 </dependency>
54         </dependencies>
55
56         <properties>
57                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58         </properties>
59
60         <build>
61                 <plugins>
62                         <plugin>
63                                 <groupId>org.apache.maven.plugins</groupId>
64                                 <artifactId>maven-compiler-plugin</artifactId>
65                                 <version>2.0.2</version>
66                                 <configuration>
67                                         <source>1.8</source>
68                                         <target>1.8</target>
69                                         <encoding>UTF-8</encoding>
70                                 </configuration>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-jar-plugin</artifactId>
75                                 <version>2.2</version>
76                                 <configuration>
77                                         <archive>
78                                                 <manifestEntries>
79                                                         <Plugin-Main-Class>net.pterodactylus.xdcc.main.Main</Plugin-Main-Class>
80                                                 </manifestEntries>
81                                         </archive>
82                                 </configuration>
83                         </plugin>
84                         <plugin>
85                                 <groupId>org.codehaus.mojo</groupId>
86                                 <artifactId>exec-maven-plugin</artifactId>
87                                 <version>1.2.1</version>
88                                 <configuration>
89                                         <mainClass>net.pterodactylus.xdcc.main.Main</mainClass>
90                                 </configuration>
91                         </plugin>
92                         <plugin>
93                                 <groupId>org.jacoco</groupId>
94                                 <artifactId>jacoco-maven-plugin</artifactId>
95                                 <version>0.7.0.201403182114</version>
96                                 <executions>
97                                         <execution>
98                                                 <id>default-prepare-agent</id>
99                                                 <goals>
100                                                         <goal>prepare-agent</goal>
101                                                 </goals>
102                                         </execution>
103                                         <execution>
104                                                 <id>default-report</id>
105                                                 <phase>prepare-package</phase>
106                                                 <goals>
107                                                         <goal>report</goal>
108                                                 </goals>
109                                         </execution>
110                                         <execution>
111                                                 <id>default-check</id>
112                                                 <goals>
113                                                         <goal>check</goal>
114                                                 </goals>
115                                         </execution>
116                                 </executions>
117                         </plugin>
118                 </plugins>
119         </build>
120
121 </project>