|
26 | 26 | <arangodb.velocypack.version>1.4.1</arangodb.velocypack.version>
|
27 | 27 |
|
28 | 28 | <!-- provided -->
|
29 |
| - <httpclient.version>4.5.1</httpclient.version> |
| 29 | + <httpclient.version>4.5.7</httpclient.version> |
30 | 30 |
|
31 | 31 | <!-- test -->
|
32 | 32 | <logback-classic.version>1.1.3</logback-classic.version>
|
|
74 | 74 |
|
75 | 75 | <build>
|
76 | 76 | <plugins>
|
| 77 | + |
| 78 | + <plugin> |
| 79 | + <inherited>true</inherited> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 82 | + <version>3.0.0-M2</version> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>enforce-maven-3</id> |
| 86 | + <goals> |
| 87 | + <goal>enforce</goal> |
| 88 | + </goals> |
| 89 | + <configuration> |
| 90 | + <rules> |
| 91 | + <requireMavenVersion> |
| 92 | + <version>3.0.5</version> |
| 93 | + </requireMavenVersion> |
| 94 | + </rules> |
| 95 | + <fail>true</fail> |
| 96 | + </configuration> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + |
77 | 101 | <plugin>
|
78 | 102 | <groupId>org.sonatype.plugins</groupId>
|
79 | 103 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
80 |
| - <version>1.6.5</version> |
| 104 | + <version>1.6.8</version> |
81 | 105 | <extensions>true</extensions>
|
82 | 106 | <configuration>
|
83 | 107 | <serverId>ossrh</serverId>
|
|
90 | 114 | <plugin>
|
91 | 115 | <groupId>org.apache.maven.plugins</groupId>
|
92 | 116 | <artifactId>maven-assembly-plugin</artifactId>
|
93 |
| - <version>2.4.1</version> |
94 | 117 | <executions>
|
95 | 118 | <execution>
|
96 | 119 | <id>assembly</id>
|
|
115 | 138 | <plugin>
|
116 | 139 | <groupId>org.apache.maven.plugins</groupId>
|
117 | 140 | <artifactId>maven-compiler-plugin</artifactId>
|
118 |
| - <version>3.2</version> |
119 | 141 | <configuration>
|
120 |
| - <source>1.6</source> |
121 |
| - <target>1.6</target> |
| 142 | + <source>1.8</source> |
| 143 | + <target>1.8</target> |
122 | 144 | <compilerArgument></compilerArgument>
|
123 | 145 | </configuration>
|
124 | 146 | </plugin>
|
125 | 147 |
|
126 | 148 | <plugin>
|
127 | 149 | <groupId>org.apache.maven.plugins</groupId>
|
128 | 150 | <artifactId>maven-resources-plugin</artifactId>
|
129 |
| - <version>2.7</version> |
130 | 151 | <configuration>
|
131 | 152 | <encoding>UTF-8</encoding>
|
132 | 153 | </configuration>
|
|
135 | 156 | <plugin>
|
136 | 157 | <groupId>org.apache.maven.plugins</groupId>
|
137 | 158 | <artifactId>maven-source-plugin</artifactId>
|
138 |
| - <version>2.4</version> |
139 | 159 | <executions>
|
140 | 160 | <execution>
|
141 | 161 | <goals>
|
|
148 | 168 | <plugin>
|
149 | 169 | <groupId>org.apache.maven.plugins</groupId>
|
150 | 170 | <artifactId>maven-javadoc-plugin</artifactId>
|
151 |
| - <version>2.9.1</version> |
152 | 171 | <executions>
|
153 | 172 | <execution>
|
154 | 173 | <id>attach-javadocs</id>
|
|
165 | 184 |
|
166 | 185 | <plugin>
|
167 | 186 | <artifactId>maven-surefire-plugin</artifactId>
|
168 |
| - <version>2.19.1</version> |
169 | 187 | <configuration>
|
170 | 188 | <includes>
|
171 | 189 | <include>**/*Test.java</include>
|
|
176 | 194 |
|
177 | 195 | <plugin>
|
178 | 196 | <artifactId>maven-deploy-plugin</artifactId>
|
179 |
| - <version>2.8.2</version> |
180 | 197 | <configuration>
|
181 | 198 | <uniqueVersion>false</uniqueVersion>
|
182 | 199 | <retryFailedDeploymentCount>10</retryFailedDeploymentCount>
|
|
186 | 203 | <plugin>
|
187 | 204 | <groupId>org.apache.maven.plugins</groupId>
|
188 | 205 | <artifactId>maven-gpg-plugin</artifactId>
|
189 |
| - <version>1.5</version> |
190 | 206 | <executions>
|
191 | 207 | <execution>
|
192 | 208 | <id>sign-artifacts</id>
|
|
0 commit comments