|
168 | 168 | <artifactId>maven-compiler-plugin</artifactId> |
169 | 169 | <version>2.4</version> |
170 | 170 | <configuration> |
171 | | - <source>1.6</source> |
172 | | - <target>1.6</target> |
| 171 | + <source>1.8</source> |
| 172 | + <target>1.8</target> |
173 | 173 | <encoding>UTF-8</encoding> |
174 | 174 | </configuration> |
175 | 175 | </plugin> |
|
214 | 214 | </execution> |
215 | 215 | </executions> |
216 | 216 | </plugin> |
217 | | - <plugin> |
218 | | - <!-- http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html --> |
219 | | - <artifactId>maven-javadoc-plugin</artifactId> |
220 | | - <version>2.10.4</version> |
221 | | - <configuration> |
222 | | - <additionalparam>${javadoc.opts}</additionalparam> |
223 | | - </configuration> |
224 | | - <executions> |
225 | | - <execution> |
226 | | - <id>attach-javadocs</id> |
227 | | - <goals> |
228 | | - <goal>jar</goal> |
229 | | - </goals> |
230 | | - </execution> |
231 | | - </executions> |
232 | | - </plugin> |
233 | | - <plugin> |
234 | | - <groupId>org.codehaus.mojo</groupId> |
235 | | - <artifactId>findbugs-maven-plugin</artifactId> |
236 | | - <configuration> |
237 | | - <skip>${findbugs.skip}</skip> |
238 | | - <fork>true</fork> |
239 | | - <includeTests>${findbugs.includeTests}</includeTests> |
240 | | - </configuration> |
241 | | - <executions> |
242 | | - <execution> |
243 | | - <phase>verify</phase> |
244 | | - <goals> |
245 | | - <goal>check</goal> |
246 | | - </goals> |
247 | | - <configuration> |
248 | | - <skip>false</skip> |
249 | | - </configuration> |
250 | | - </execution> |
251 | | - </executions> |
252 | | - </plugin> |
| 217 | +<!-- <plugin> --> |
| 218 | +<!-- http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html --> |
| 219 | +<!-- <artifactId>maven-javadoc-plugin</artifactId> --> |
| 220 | +<!-- <version>2.10.4</version> --> |
| 221 | +<!-- <configuration> --> |
| 222 | +<!-- <additionalparam>${javadoc.opts}</additionalparam> --> |
| 223 | +<!-- </configuration> --> |
| 224 | +<!-- <executions> --> |
| 225 | +<!-- <execution> --> |
| 226 | +<!-- <id>attach-javadocs</id> --> |
| 227 | +<!-- <goals> --> |
| 228 | +<!-- <goal>jar</goal> --> |
| 229 | +<!-- </goals> --> |
| 230 | +<!-- </execution> --> |
| 231 | +<!-- </executions> --> |
| 232 | +<!-- </plugin> --> |
| 233 | +<!-- <plugin> --> |
| 234 | +<!-- <groupId>org.codehaus.mojo</groupId> --> |
| 235 | +<!-- <artifactId>findbugs-maven-plugin</artifactId> --> |
| 236 | +<!-- <configuration> --> |
| 237 | +<!-- <skip>${findbugs.skip}</skip> --> |
| 238 | +<!-- <fork>true</fork> --> |
| 239 | +<!-- <includeTests>${findbugs.includeTests}</includeTests> --> |
| 240 | +<!-- </configuration> --> |
| 241 | +<!-- <executions> --> |
| 242 | +<!-- <execution> --> |
| 243 | +<!-- <phase>verify</phase> --> |
| 244 | +<!-- <goals> --> |
| 245 | +<!-- <goal>check</goal> --> |
| 246 | +<!-- </goals> --> |
| 247 | +<!-- <configuration> --> |
| 248 | +<!-- <skip>false</skip> --> |
| 249 | +<!-- </configuration> --> |
| 250 | +<!-- </execution> --> |
| 251 | +<!-- </executions> --> |
| 252 | +<!-- </plugin> --> |
253 | 253 | </plugins> |
254 | 254 | <resources> |
255 | 255 | <resource> |
|
269 | 269 | </testResources> |
270 | 270 | </build> |
271 | 271 | <distributionManagement> |
272 | | - <snapshotRepository> |
273 | | - <id>sonatype-nexus-snapshots</id> |
274 | | - <name>Sonatype Nexus Snapshots</name> |
275 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
276 | | - </snapshotRepository> |
277 | | - <repository> |
278 | | - <id>sonatype-nexus-staging</id> |
279 | | - <name>Nexus Release Repository</name> |
280 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
281 | | - </repository> |
282 | | - </distributionManagement> |
| 272 | + <repository> |
| 273 | + <id>nexus-releases</id> |
| 274 | + <url>http://nexus.dream-world.in/content/repositories/releases</url> |
| 275 | + </repository> |
| 276 | + <snapshotRepository> |
| 277 | + <id>nexus-snapshots</id> |
| 278 | + <url>http://nexus.dream-world.in/content/repositories/snapshots</url> |
| 279 | + </snapshotRepository> |
| 280 | + </distributionManagement> |
283 | 281 | <profiles> |
284 | 282 | <profile> |
285 | 283 | <id>release-sign-artifacts</id> |
|
0 commit comments