Skip to content

Commit 15c6f67

Browse files
committed
* Dependencies updated
* OfficeDev#620 merged * OfficeDev#751 merged * OfficeDev#642 merged
1 parent 33235f3 commit 15c6f67

File tree

5 files changed

+1918
-1955
lines changed

5 files changed

+1918
-1955
lines changed

pom.xml

Lines changed: 9 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<!-- Eliminates the file encoding warning. Of course, all of your files
7777
should probably be UTF-8 nowadays. -->
7878
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79-
<javaLanguage.version>1.6</javaLanguage.version>
79+
<javaLanguage.version>1.8</javaLanguage.version>
8080
<javadoc.doclint.param/>
8181

8282
<!-- Dependencies [BUILD]: -->
@@ -86,20 +86,19 @@
8686
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
8787
<nexus-staging-maven-plugin.version>1.6.5</nexus-staging-maven-plugin.version>
8888
<maven-source-plugin.version>2.4</maven-source-plugin.version>
89-
<animal-sniffer-maven-plugin.version>1.14</animal-sniffer-maven-plugin.version>
90-
<animal-sniffer-maven-plugin.signature.version>1.1</animal-sniffer-maven-plugin.signature.version>
89+
<animal-sniffer-maven-plugin.version>1.15</animal-sniffer-maven-plugin.version>
90+
<animal-sniffer-maven-plugin.signature.version>1.0</animal-sniffer-maven-plugin.signature.version>
9191
<!-- Dependencies [REPORT]: -->
9292
<maven-site-plugin.version>3.4</maven-site-plugin.version>
93-
<maven-project-info-reports-plugin.version>2.8</maven-project-info-reports-plugin.version>
94-
<versions-maven-plugin.version>2.2</versions-maven-plugin.version>
95-
<maven-jxr-plugin.version>2.5</maven-jxr-plugin.version>
96-
<maven-surefire-report-plugin.version>2.18.1</maven-surefire-report-plugin.version>
93+
<maven-project-info-reports-plugin.version>3.4.0</maven-project-info-reports-plugin.version>
94+
<versions-maven-plugin.version>2.11.0</versions-maven-plugin.version>
95+
<maven-jxr-plugin.version>3.2.0</maven-jxr-plugin.version>
96+
<maven-surefire-report-plugin.version>2.22.2</maven-surefire-report-plugin.version>
9797
<jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version>
9898
<!-- Dependencies [COMPILE]: -->
99-
<httpclient.version>4.4.1</httpclient.version>
100-
<httpcore.version>4.4.1</httpcore.version>
99+
<httpclient.version>4.5.13</httpclient.version>
100+
<httpcore.version>4.4.15</httpcore.version>
101101
<commons-logging.version>1.2</commons-logging.version>
102-
<joda-time.version>2.8</joda-time.version>
103102
<commons-lang3.version>3.4</commons-lang3.version>
104103
<commons-io.version>2.4</commons-io.version>
105104
<!-- Dependencies [TEST]: -->
@@ -121,60 +120,6 @@
121120
<javadoc.doclint.param>-Xdoclint:none</javadoc.doclint.param>
122121
</properties>
123122
</profile>
124-
<profile>
125-
<!-- maven-checkstyle-plugin required Java 7 or later -->
126-
<id>java-7-or-later-profile</id>
127-
<activation>
128-
<jdk>[1.7,)</jdk>
129-
</activation>
130-
<build>
131-
<plugins>
132-
<plugin>
133-
<groupId>org.apache.maven.plugins</groupId>
134-
<artifactId>maven-checkstyle-plugin</artifactId>
135-
<version>${maven-checkstyle-plugin.version}</version>
136-
<configuration>
137-
<failsOnError>true</failsOnError>
138-
<configLocation>google_checks.xml</configLocation>
139-
</configuration>
140-
<executions>
141-
<execution>
142-
<phase>verify</phase>
143-
<goals>
144-
<goal>checkstyle</goal>
145-
</goals>
146-
</execution>
147-
</executions>
148-
</plugin>
149-
</plugins>
150-
</build>
151-
</profile>
152-
<profile>
153-
<id>release-sign-artifacts</id>
154-
<activation>
155-
<property>
156-
<name>gpg.passphrase</name>
157-
</property>
158-
</activation>
159-
<build>
160-
<plugins>
161-
<plugin>
162-
<groupId>org.apache.maven.plugins</groupId>
163-
<artifactId>maven-gpg-plugin</artifactId>
164-
<version>${maven-gpg-plugin.version}</version>
165-
<executions>
166-
<execution>
167-
<id>sign-artifacts</id>
168-
<phase>verify</phase>
169-
<goals>
170-
<goal>sign</goal>
171-
</goals>
172-
</execution>
173-
</executions>
174-
</plugin>
175-
</plugins>
176-
</build>
177-
</profile>
178123
</profiles>
179124

180125
<licenses>
@@ -243,12 +188,6 @@
243188
<version>${commons-lang3.version}</version>
244189
</dependency>
245190

246-
<dependency>
247-
<groupId>joda-time</groupId>
248-
<artifactId>joda-time</artifactId>
249-
<version>${joda-time.version}</version>
250-
</dependency>
251-
252191
<dependency>
253192
<groupId>junit</groupId>
254193
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)