Skip to content

Commit ef7720a

Browse files
authored
mvn deps versions update (#307)
* mvn deps versions update * configured test password
1 parent 583568a commit ef7720a

File tree

2 files changed

+22
-63
lines changed

2 files changed

+22
-63
lines changed

pom.xml

Lines changed: 21 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,26 @@
2323

2424
<properties>
2525
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26-
<slf4j-api.version>1.7.13</slf4j-api.version>
26+
<slf4j-api.version>1.7.28</slf4j-api.version>
2727
<arangodb.velocypack.version>1.4.2</arangodb.velocypack.version>
2828

2929
<!-- provided -->
30-
<httpclient.version>4.5.8</httpclient.version>
30+
<httpclient.version>4.5.9</httpclient.version>
3131

3232
<!-- test -->
33-
<logback-classic.version>1.1.3</logback-classic.version>
33+
<logback-classic.version>1.2.3</logback-classic.version>
3434
<hamcrest-all.version>1.3</hamcrest-all.version>
3535
<junit.version>4.12</junit.version>
36+
37+
<!-- javadoc-->
38+
<javadoc.opts/>
3639
</properties>
3740

3841
<developers>
42+
<developer>
43+
<name>Michele Rastelli</name>
44+
<url>https://github.com/rashtao</url>
45+
</developer>
3946
<developer>
4047
<id>mpv1989</id>
4148
<name>Mark Vollmary</name>
@@ -75,30 +82,6 @@
7582

7683
<build>
7784
<plugins>
78-
79-
<plugin>
80-
<inherited>true</inherited>
81-
<groupId>org.apache.maven.plugins</groupId>
82-
<artifactId>maven-enforcer-plugin</artifactId>
83-
<version>3.0.0-M2</version>
84-
<executions>
85-
<execution>
86-
<id>enforce-maven-3</id>
87-
<goals>
88-
<goal>enforce</goal>
89-
</goals>
90-
<configuration>
91-
<rules>
92-
<requireMavenVersion>
93-
<version>3.0.5</version>
94-
</requireMavenVersion>
95-
</rules>
96-
<fail>true</fail>
97-
</configuration>
98-
</execution>
99-
</executions>
100-
</plugin>
101-
10285
<plugin>
10386
<groupId>org.sonatype.plugins</groupId>
10487
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -111,52 +94,27 @@
11194
<autoReleaseAfterClose>false</autoReleaseAfterClose>
11295
</configuration>
11396
</plugin>
114-
115-
<plugin>
116-
<groupId>org.apache.maven.plugins</groupId>
117-
<artifactId>maven-assembly-plugin</artifactId>
118-
<executions>
119-
<execution>
120-
<id>assembly</id>
121-
<phase>package</phase>
122-
<goals>
123-
<goal>single</goal>
124-
</goals>
125-
</execution>
126-
</executions>
127-
<configuration>
128-
<finalName>
129-
${project.artifactId}-${project.version}-standalone
130-
</finalName>
131-
<attach>false</attach>
132-
<appendAssemblyId>false</appendAssemblyId>
133-
<descriptorRefs>
134-
<descriptorRef>jar-with-dependencies</descriptorRef>
135-
</descriptorRefs>
136-
</configuration>
137-
</plugin>
138-
13997
<plugin>
14098
<groupId>org.apache.maven.plugins</groupId>
14199
<artifactId>maven-compiler-plugin</artifactId>
100+
<version>3.8.1</version>
142101
<configuration>
143102
<source>1.8</source>
144103
<target>1.8</target>
145-
<compilerArgument></compilerArgument>
146104
</configuration>
147105
</plugin>
148-
149106
<plugin>
150107
<groupId>org.apache.maven.plugins</groupId>
151108
<artifactId>maven-resources-plugin</artifactId>
109+
<version>3.1.0</version>
152110
<configuration>
153111
<encoding>UTF-8</encoding>
154112
</configuration>
155113
</plugin>
156-
157114
<plugin>
158115
<groupId>org.apache.maven.plugins</groupId>
159116
<artifactId>maven-source-plugin</artifactId>
117+
<version>3.1.0</version>
160118
<executions>
161119
<execution>
162120
<goals>
@@ -165,45 +123,47 @@
165123
</execution>
166124
</executions>
167125
</plugin>
168-
169126
<plugin>
170127
<groupId>org.apache.maven.plugins</groupId>
171128
<artifactId>maven-javadoc-plugin</artifactId>
129+
<version>3.1.1</version>
172130
<executions>
173131
<execution>
174132
<id>attach-javadocs</id>
175133
<goals>
176134
<goal>jar</goal>
177135
</goals>
178136
<configuration>
179-
<additionalparam>${javadoc.opts}</additionalparam>
137+
<additionalOptions>${javadoc.opts}</additionalOptions>
180138
<excludePackageNames>com.arangodb.internal</excludePackageNames>
181139
</configuration>
182140
</execution>
183141
</executions>
184142
</plugin>
185-
186143
<plugin>
144+
<groupId>org.apache.maven.plugins</groupId>
187145
<artifactId>maven-surefire-plugin</artifactId>
146+
<version>2.22.2</version>
188147
<configuration>
189148
<includes>
190149
<include>**/*Test.java</include>
191150
<include>**/*Example.java</include>
192151
</includes>
193152
</configuration>
194153
</plugin>
195-
196154
<plugin>
155+
<groupId>org.apache.maven.plugins</groupId>
197156
<artifactId>maven-deploy-plugin</artifactId>
157+
<version>2.8.2</version>
198158
<configuration>
199159
<uniqueVersion>false</uniqueVersion>
200160
<retryFailedDeploymentCount>10</retryFailedDeploymentCount>
201161
</configuration>
202162
</plugin>
203-
204163
<plugin>
205164
<groupId>org.apache.maven.plugins</groupId>
206165
<artifactId>maven-gpg-plugin</artifactId>
166+
<version>1.6</version>
207167
<executions>
208168
<execution>
209169
<id>sign-artifacts</id>
@@ -214,9 +174,7 @@
214174
</execution>
215175
</executions>
216176
</plugin>
217-
218177
</plugins>
219-
220178
</build>
221179

222180
<dependencies>
@@ -278,7 +236,7 @@
278236
<dependency>
279237
<groupId>commons-codec</groupId>
280238
<artifactId>commons-codec</artifactId>
281-
<version>1.12</version>
239+
<version>1.13</version>
282240
</dependency>
283241
<dependency>
284242
<groupId>commons-logging</groupId>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
arangodb.hosts=localhost:8529
22
arangodb.connections.max=1
33
arangodb.acquireHostList=false
4+
arangodb.password=test

0 commit comments

Comments
 (0)