send a message to wot and see what comes back
[Sone.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>net.pterodactylus</groupId>
4         <artifactId>sone</artifactId>
5         <version>0.9.4</version>
6         <dependencies>
7                 <dependency>
8                         <groupId>net.pterodactylus</groupId>
9                         <artifactId>utils</artifactId>
10                         <version>${version.utils}</version>
11                 </dependency>
12                 <dependency>
13                         <groupId>junit</groupId>
14                         <artifactId>junit</artifactId>
15                         <version>4.11</version>
16                         <scope>test</scope>
17                 </dependency>
18                 <dependency>
19                         <groupId>org.mockito</groupId>
20                         <artifactId>mockito-all</artifactId>
21                         <version>1.9.5</version>
22                         <scope>test</scope>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.hamcrest</groupId>
26                         <artifactId>hamcrest-all</artifactId>
27                         <version>1.3</version>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.jsoup</groupId>
31                         <artifactId>jsoup</artifactId>
32                         <version>1.7.1</version>
33                         <scope>test</scope>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.freenetproject</groupId>
37                         <artifactId>fred</artifactId>
38                         <version>0.7.5.1467.99.3</version>
39                         <scope>provided</scope>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.freenetproject</groupId>
43                         <artifactId>freenet-ext</artifactId>
44                         <version>29</version>
45                         <scope>provided</scope>
46                 </dependency>
47                 <dependency>
48                         <groupId>com.google.inject</groupId>
49                         <artifactId>guice</artifactId>
50                         <version>3.0</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>com.google.guava</groupId>
54                         <artifactId>guava</artifactId>
55                         <version>14.0.1</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>commons-lang</groupId>
59                         <artifactId>commons-lang</artifactId>
60                         <version>2.6</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>com.fasterxml.jackson.core</groupId>
64                         <artifactId>jackson-databind</artifactId>
65                         <version>2.1.2</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>com.google.code.findbugs</groupId>
69                         <artifactId>jsr305</artifactId>
70                         <version>2.0.1</version>
71                 </dependency>
72         </dependencies>
73         <repositories>
74                 <repository>
75                         <id>pterodactylus</id>
76                         <url>http://maven.pterodactylus.net/</url>
77                 </repository>
78         </repositories>
79         <properties>
80                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
81                 <version.utils>0.12.4</version.utils>
82                 <findbugs.timeout>600000</findbugs.timeout>
83         </properties>
84         <build>
85                 <plugins>
86                         <plugin>
87                                 <groupId>org.codehaus.mojo</groupId>
88                                 <artifactId>findbugs-maven-plugin</artifactId>
89                                 <version>2.5.2</version>
90                                 <configuration>
91                                         <timeout>${findbugs.timeout}</timeout>
92                                 </configuration>
93                         </plugin>
94                         <plugin>
95                                 <groupId>org.apache.maven.plugins</groupId>
96                                 <artifactId>maven-compiler-plugin</artifactId>
97                                 <version>2.0.2</version>
98                                 <configuration>
99                                         <source>1.6</source>
100                                         <target>1.6</target>
101                                         <encoding>UTF-8</encoding>
102                                 </configuration>
103                         </plugin>
104                         <plugin>
105                                 <groupId>org.apache.maven.plugins</groupId>
106                                 <artifactId>maven-jar-plugin</artifactId>
107                                 <version>2.2</version>
108                                 <configuration>
109                                         <archive>
110                                                 <manifestEntries>
111                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
112                                                 </manifestEntries>
113                                         </archive>
114                                 </configuration>
115                         </plugin>
116                         <plugin>
117                                 <groupId>org.apache.maven.plugins</groupId>
118                                 <artifactId>maven-assembly-plugin</artifactId>
119                                 <version>2.2-beta-5</version>
120                                 <configuration>
121                                         <finalName>sone</finalName>
122                                         <descriptorRefs>
123                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
124                                         </descriptorRefs>
125                                         <archiverConfig>
126                                                 <duplicateBehavior>skip</duplicateBehavior>
127                                         </archiverConfig>
128                                         <archive>
129                                                 <manifestEntries>
130                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
131                                                 </manifestEntries>
132                                         </archive>
133                                 </configuration>
134                                 <executions>
135                                         <execution>
136                                                 <id>make-assembly</id>
137                                                 <phase>package</phase>
138                                                 <goals>
139                                                         <goal>single</goal>
140                                                 </goals>
141                                         </execution>
142                                 </executions>
143                         </plugin>
144                         <plugin>
145                                 <groupId>org.apache.maven.plugins</groupId>
146                                 <artifactId>maven-javadoc-plugin</artifactId>
147                                 <version>2.7</version>
148                                 <configuration>
149                                         <detectLinks>true</detectLinks>
150                                         <detectJavaApiLink>true</detectJavaApiLink>
151                                         <show>private</show>
152                                         <footer>© 2010–2013 David ‘Bombe’ Roden</footer>
153                                 </configuration>
154                         </plugin>
155                         <plugin>
156                                 <groupId>org.jacoco</groupId>
157                                 <artifactId>jacoco-maven-plugin</artifactId>
158                                 <version>0.7.6.201602180812</version>
159                                 <executions>
160                                         <execution>
161                                                 <id>default-prepare-agent</id>
162                                                 <goals>
163                                                         <goal>prepare-agent</goal>
164                                                 </goals>
165                                         </execution>
166                                         <execution>
167                                                 <id>default-report</id>
168                                                 <phase>prepare-package</phase>
169                                                 <goals>
170                                                         <goal>report</goal>
171                                                 </goals>
172                                         </execution>
173                                         <execution>
174                                                 <id>default-check</id>
175                                                 <goals>
176                                                         <goal>check</goal>
177                                                 </goals>
178                                                 <configuration>
179                                                         <rules>
180                                                                 <!--  implmentation is needed only for Maven 2  -->
181                                                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
182                                                                         <element>BUNDLE</element>
183                                                                         <limits>
184                                                                                 <!--  implmentation is needed only for Maven 2  -->
185                                                                                 <limit implementation="org.jacoco.report.check.Limit">
186                                                                                         <counter>COMPLEXITY</counter>
187                                                                                         <value>COVEREDRATIO</value>
188                                                                                         <minimum>0.60</minimum>
189                                                                                 </limit>
190                                                                         </limits>
191                                                                 </rule>
192                                                         </rules>
193                                                 </configuration>
194                                         </execution>
195                                 </executions>
196                         </plugin>
197                 </plugins>
198         </build>
199 </project>