-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
207 lines (170 loc) · 5.81 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.multibit.hd</groupId>
<artifactId>error-reporting-parent</artifactId>
<packaging>pom</packaging>
<!-- Only change this on a master or release branch -->
<version>develop-SNAPSHOT</version>
<url>http://localhost:9090</url>
<name>Error Reporting Service</name>
<description>Dropwizard service to handle upload of encrypted error reports</description>
<inceptionYear>2015</inceptionYear>
<!-- Set the version levels for linked dependencies -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dropwizard.version>0.6.2</dropwizard.version>
<jackson.version>2.3.2</jackson.version>
<elasticSearch.version>1.5.1</elasticSearch.version>
</properties>
<modules>
<module>error-reporting-core</module>
<module>error-reporting-rest</module>
</modules>
<!-- Developer list -->
<developers>
<developer>
<name>Gary Rowe</name>
<email>[email protected]</email>
<timezone>0</timezone>
</developer>
</developers>
<!-- MIT license -->
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<!-- GitHub for source code management -->
<scm>
<connection>scm:git:git://github.com/bitcoin-solutions/error-reporting-service.git</connection>
<developerConnection>scm:git:[email protected]:bitcoin-solutions/error-reporting-service.git</developerConnection>
<url>http://github.com/bitcoin-solutions/error-reporting-service/</url>
<tag>develop-SNAPSHOT</tag>
</scm>
<!-- GitHub for issue management -->
<issueManagement>
<system>github</system>
<url>http://github.com/bitcoin-solutions/error-reporting-service/issues#issue/</url>
</issueManagement>
<repositories>
<!-- Define the MultiBit staging repository for releases and snapshots -->
<!-- Cannot use rawgithub.com due to DH prime too high for Java 7 -->
<repository>
<id>mbhd-maven-release</id>
<url>https://raw.github.com/bitcoin-solutions/mbhd-maven/master/releases</url>
<releases/>
</repository>
<repository>
<id>mbhd-maven-snapshot</id>
<url>https://raw.github.com/bitcoin-solutions/mbhd-maven/master/snapshots</url>
<!-- These artifacts change frequently during development iterations -->
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
<!-- ElasticSearch repo -->
<repository>
<id>elasticsearch-releases</id>
<url>http://maven.elasticsearch.org/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<!-- All compilation is done under Java7 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<debug>true</debug>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<!-- MultiBit Commons for standard libraries and utilities -->
<dependency>
<groupId>org.multibit</groupId>
<artifactId>commons</artifactId>
<version>1.1.0</version>
</dependency>
<!-- Logstash for JSON logging -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>4.2</version>
</dependency>
<!-- Testing -->
<!-- JUnit for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!-- FEST for fluent assertions -->
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<version>2.0M10</version>
</dependency>
<!-- Mockito for mocking -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- All modules will have these dependencies -->
<dependencies>
<!-- MultiBit Commons for standard libraries and utilities -->
<dependency>
<groupId>org.multibit</groupId>
<artifactId>commons</artifactId>
<exclusions>
<!-- Don't need Tor support -->
<exclusion>
<groupId>org.bitcoinj</groupId>
<artifactId>orchid</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Logstash for JSON logging -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
</dependency>
<!-- Testing -->
<!-- JUnit for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<!-- FEST for fluent assertions -->
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
</dependency>
<!-- Mockito for mocking -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
</project>