|
76 | 76 | <!-- Eliminates the file encoding warning. Of course, all of your files |
77 | 77 | should probably be UTF-8 nowadays. --> |
78 | 78 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
79 | | - <javaLanguage.version>1.6</javaLanguage.version> |
| 79 | + <javaLanguage.version>1.8</javaLanguage.version> |
80 | 80 | <javadoc.doclint.param/> |
81 | 81 |
|
82 | 82 | <!-- Dependencies [BUILD]: --> |
|
86 | 86 | <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
87 | 87 | <nexus-staging-maven-plugin.version>1.6.5</nexus-staging-maven-plugin.version> |
88 | 88 | <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> |
91 | 91 | <!-- Dependencies [REPORT]: --> |
92 | 92 | <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> |
97 | 97 | <jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version> |
98 | 98 | <!-- 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> |
101 | 101 | <commons-logging.version>1.2</commons-logging.version> |
102 | | - <joda-time.version>2.8</joda-time.version> |
103 | 102 | <commons-lang3.version>3.4</commons-lang3.version> |
104 | 103 | <commons-io.version>2.4</commons-io.version> |
105 | 104 | <!-- Dependencies [TEST]: --> |
|
121 | 120 | <javadoc.doclint.param>-Xdoclint:none</javadoc.doclint.param> |
122 | 121 | </properties> |
123 | 122 | </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> |
178 | 123 | </profiles> |
179 | 124 |
|
180 | 125 | <licenses> |
|
243 | 188 | <version>${commons-lang3.version}</version> |
244 | 189 | </dependency> |
245 | 190 |
|
246 | | - <dependency> |
247 | | - <groupId>joda-time</groupId> |
248 | | - <artifactId>joda-time</artifactId> |
249 | | - <version>${joda-time.version}</version> |
250 | | - </dependency> |
251 | | - |
252 | 191 | <dependency> |
253 | 192 | <groupId>junit</groupId> |
254 | 193 | <artifactId>junit</artifactId> |
|
0 commit comments