Skip to content

Commit e4827eb

Browse files
committed
dep updated, plugin management added
1 parent c565788 commit e4827eb

File tree

1 file changed

+76
-11
lines changed

1 file changed

+76
-11
lines changed

pom.xml

Lines changed: 76 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,17 @@
7070
</scm>
7171

7272
<properties>
73+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
74+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
75+
76+
<java.target>1.7</java.target>
77+
7378
<maven-plugin-api.version>3.1.1</maven-plugin-api.version>
7479

75-
<jgit.version>4.0.0.201506090130-r</jgit.version>
80+
<jgit.version>4.1.1.201511131810-r</jgit.version>
7681
<junit.version>4.12</junit.version>
77-
<mockito.version>2.0.5-beta</mockito.version>
82+
<mockito.version>2.0.35-beta</mockito.version>
7883

79-
<java.target>1.7</java.target>
80-
<sourceEncoding>UTF-8</sourceEncoding>
81-
<outputEncoding>UTF-8</outputEncoding>
8284
<fest-assert.version>1.4</fest-assert.version>
8385
</properties>
8486

@@ -98,21 +100,21 @@
98100
<dependency>
99101
<groupId>com.fasterxml.jackson.core</groupId>
100102
<artifactId>jackson-databind</artifactId>
101-
<version>2.5.1</version>
103+
<version>2.6.4</version>
102104
</dependency>
103105

104106
<!-- Joda Time -->
105107
<dependency>
106108
<groupId>joda-time</groupId>
107109
<artifactId>joda-time</artifactId>
108-
<version>2.7</version>
110+
<version>2.9.1</version>
109111
</dependency>
110112

111113
<!-- Guava -->
112114
<dependency>
113115
<groupId>com.google.guava</groupId>
114116
<artifactId>guava</artifactId>
115-
<version>18.0</version>
117+
<version>19.0</version>
116118
</dependency>
117119

118120
<!-- IntelliJ Annotations -->
@@ -147,7 +149,7 @@
147149
<dependency>
148150
<groupId>org.codehaus.plexus</groupId>
149151
<artifactId>plexus-utils</artifactId>
150-
<version>3.0.21</version>
152+
<version>3.0.22</version>
151153
<scope>test</scope>
152154
</dependency>
153155

@@ -195,15 +197,78 @@
195197
</resource>
196198
</resources>
197199

200+
<pluginManagement>
201+
<plugins>
202+
<plugin>
203+
<artifactId>maven-antrun-plugin</artifactId>
204+
<version>1.8</version>
205+
</plugin>
206+
<plugin>
207+
<artifactId>maven-assembly-plugin</artifactId>
208+
<version>2.6</version>
209+
</plugin>
210+
<plugin>
211+
<artifactId>maven-dependency-plugin</artifactId>
212+
<version>2.10</version>
213+
</plugin>
214+
<plugin>
215+
<artifactId>maven-release-plugin</artifactId>
216+
<version>2.5.3</version>
217+
</plugin>
218+
<plugin>
219+
<artifactId>maven-enforcer-plugin</artifactId>
220+
<version>1.4.1</version>
221+
</plugin>
222+
<plugin>
223+
<artifactId>maven-compiler-plugin</artifactId>
224+
<version>3.3</version>
225+
</plugin>
226+
<plugin>
227+
<artifactId>maven-gpg-plugin</artifactId>
228+
<version>1.6</version>
229+
</plugin>
230+
<plugin>
231+
<artifactId>maven-clean-plugin</artifactId>
232+
<version>3.0.0</version>
233+
</plugin>
234+
<plugin>
235+
<artifactId>maven-resources-plugin</artifactId>
236+
<version>2.7</version>
237+
</plugin>
238+
<plugin>
239+
<artifactId>maven-jar-plugin</artifactId>
240+
<version>2.6</version>
241+
</plugin>
242+
<plugin>
243+
<artifactId>maven-plugin-plugin</artifactId>
244+
<version>3.4</version>
245+
</plugin>
246+
<plugin>
247+
<artifactId>maven-surefire-plugin</artifactId>
248+
<version>2.19</version>
249+
</plugin>
250+
<plugin>
251+
<artifactId>maven-install-plugin</artifactId>
252+
<version>2.5.2</version>
253+
</plugin>
254+
<plugin>
255+
<artifactId>maven-deploy-plugin</artifactId>
256+
<version>2.8.2</version>
257+
</plugin>
258+
<plugin>
259+
<artifactId>maven-site-plugin</artifactId>
260+
<version>3.4</version>
261+
</plugin>
262+
</plugins>
263+
</pluginManagement>
264+
198265
<plugins>
199266
<!-- if you would like to run the git-commit-id-plugin for your build, you could also include it here instead using a profile (see README.md) -->
200267
<!-- Setting built-in java compiler properties -->
201268
<plugin>
202269
<groupId>org.apache.maven.plugins</groupId>
203270
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>2.5.1</version>
205271
<configuration>
206-
<encoding>UTF-8</encoding>
207272
<source>${java.target}</source>
208273
<target>${java.target}</target>
209274
</configuration>

0 commit comments

Comments
 (0)