|
28 | 28 | <tag>fabric-sdk-java-1.0</tag> |
29 | 29 | </scm> |
30 | 30 | <properties> |
31 | | - <grpc.version>1.17.1</grpc.version><!-- CURRENT_GRPC_VERSION --> |
| 31 | + <grpc.version>1.18.0</grpc.version><!-- CURRENT_GRPC_VERSION --> |
32 | 32 | <protobuf.version>3.6.1</protobuf.version> |
33 | 33 | <bouncycastle.version>1.60</bouncycastle.version> |
34 | 34 | <httpclient.version>4.5.6</httpclient.version> |
| 35 | + <javadoc.version>3.0.1</javadoc.version> |
35 | 36 | <skipITs>true</skipITs> |
36 | 37 | <alpn-boot-version>8.1.7.v20160121</alpn-boot-version> |
37 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
38 | | - <jacoco.version>0.7.9</jacoco.version> |
| 39 | + <jacoco.version>0.8.2</jacoco.version> |
39 | 40 | <log4j.version>1.2.17</log4j.version> |
40 | 41 | <org.hyperledger.fabric.sdktest.ITSuite>IntegrationSuite.java</org.hyperledger.fabric.sdktest.ITSuite> |
41 | 42 | <gpg.executable>gpg2</gpg.executable> |
|
234 | 235 | <extension> |
235 | 236 | <groupId>kr.motd.maven</groupId> |
236 | 237 | <artifactId>os-maven-plugin</artifactId> |
237 | | - <version>1.4.1.Final</version> |
| 238 | + <version>1.6.1</version> |
238 | 239 | </extension> |
239 | 240 | </extensions> |
240 | 241 | <plugins> |
241 | 242 | <plugin> |
242 | 243 | <groupId>org.apache.maven.plugins</groupId> |
243 | 244 | <artifactId>maven-surefire-plugin</artifactId> |
244 | | - <version>2.19.1</version> |
| 245 | + <version>3.0.0-M3</version> |
245 | 246 | <configuration> |
246 | 247 | <argLine>${surefireArgLine}</argLine> |
247 | 248 | <includes> |
|
253 | 254 | <plugin> |
254 | 255 | <groupId>org.apache.maven.plugins</groupId> |
255 | 256 | <artifactId>maven-failsafe-plugin</artifactId> |
256 | | - <version>2.19.1</version> |
| 257 | + <version>3.0.0-M3</version> |
257 | 258 | <configuration> |
258 | 259 | <argLine>${failsafeArgLine}</argLine> |
259 | 260 | <includes> |
|
303 | 304 | <plugin> |
304 | 305 | <groupId>org.apache.maven.plugins</groupId> |
305 | 306 | <artifactId>maven-compiler-plugin</artifactId> |
306 | | - <version>3.3</version> |
| 307 | + <version>3.8.0</version> |
307 | 308 | <configuration> |
308 | 309 | <source>1.8</source> |
309 | 310 | <target>1.8</target> |
|
312 | 313 | <plugin> |
313 | 314 | <groupId>org.apache.maven.plugins</groupId> |
314 | 315 | <artifactId>maven-javadoc-plugin</artifactId> |
315 | | - <version>2.10.4</version> |
| 316 | + <version>${javadoc.version}</version> |
316 | 317 | <configuration> |
317 | 318 | <excludePackageNames> |
318 | 319 | org.hyperledger.fabric_ca.sdk.helper:org.hyperledger.fabric.protos.*:org.hyperledger.fabric.sdk.helper:org.hyperledger.fabric.sdk.transaction:org.hyperledger.fabric.sdk.security:org.hyperledger.fabric.sdk.idemix |
|
326 | 327 | <plugin> |
327 | 328 | <groupId>org.apache.maven.plugins</groupId> |
328 | 329 | <artifactId>maven-checkstyle-plugin</artifactId> |
329 | | - <version>2.17</version> |
| 330 | + <version>3.0.0</version> |
330 | 331 | <executions> |
331 | 332 | <execution> |
332 | 333 | <goals> |
|
339 | 340 | <logViolationsToConsole>true</logViolationsToConsole> |
340 | 341 | <failOnViolation>true</failOnViolation> |
341 | 342 | <failsOnError>true</failsOnError> |
342 | | - <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 343 | + <!--<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>--> |
| 344 | + <sourceDirectories> |
| 345 | + <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 346 | + </sourceDirectories> |
| 347 | + |
343 | 348 | <configLocation>checkstyle-config.xml</configLocation> |
344 | 349 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
345 | 350 | </configuration> |
|
479 | 484 | <plugin> |
480 | 485 | <groupId>org.apache.maven.plugins</groupId> |
481 | 486 | <artifactId>maven-antrun-plugin</artifactId> |
482 | | - <version>1.4</version> |
| 487 | + <version>1.8</version> |
483 | 488 | <executions> |
484 | 489 | <execution> |
485 | 490 | <phase>generate-test-resources</phase> |
|
498 | 503 | <plugin> |
499 | 504 | <groupId>pl.project13.maven</groupId> |
500 | 505 | <artifactId>git-commit-id-plugin</artifactId> |
501 | | - <version>2.2.2</version> |
| 506 | + <version>2.2.6</version> |
502 | 507 | <executions> |
503 | 508 | <execution> |
504 | 509 | <id>get-the-git-infos</id> |
|
539 | 544 | <profiles> |
540 | 545 | <profile> |
541 | 546 | <id>owasp</id> |
| 547 | + <!-- RUN with mvn -P owasp verify --> |
542 | 548 | <build> |
543 | 549 | <plugins> |
544 | 550 | <plugin> |
545 | 551 | <groupId>org.owasp</groupId> |
546 | 552 | <artifactId>dependency-check-maven</artifactId> |
547 | | - <version>3.2.0</version> |
| 553 | + <version>4.0.2</version> |
548 | 554 | <executions> |
549 | 555 | <execution> |
550 | 556 | <goals> |
|
565 | 571 | <plugin> |
566 | 572 | <groupId>org.sonatype.plugins</groupId> |
567 | 573 | <artifactId>nexus-staging-maven-plugin</artifactId> |
568 | | - <version>1.6.7</version> |
| 574 | + <version>1.6.8</version> <!-- was 1.6.7 --> |
569 | 575 | <extensions>true</extensions> |
570 | 576 | <configuration> |
571 | 577 | <serverId>ossrh</serverId> |
|
575 | 581 | </plugin> |
576 | 582 | <plugin> |
577 | 583 | <artifactId>maven-assembly-plugin</artifactId> |
578 | | - <version>2.3</version> |
| 584 | + <version>3.1.1</version> <!-- was 2.3 --> |
579 | 585 | <configuration> |
580 | 586 | <descriptorRefs> |
581 | 587 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|
596 | 602 | <configuration> |
597 | 603 | <useAgent>true</useAgent> |
598 | 604 | </configuration> |
599 | | - <version>1.5</version> |
| 605 | + <version>1.6</version> <!-- was 1.5 --> |
600 | 606 | <executions> |
601 | 607 | <execution> |
602 | 608 | <id>sign-artifacts</id> |
|
610 | 616 | <plugin> |
611 | 617 | <groupId>org.apache.maven.plugins</groupId> |
612 | 618 | <artifactId>maven-source-plugin</artifactId> |
613 | | - <version>2.2.1</version> |
| 619 | + <version>3.0.1</version> <!-- was 2.2.1 --> |
614 | 620 | <executions> |
615 | 621 | <execution> |
616 | 622 | <id>attach-sources</id> |
|
623 | 629 | <plugin> |
624 | 630 | <groupId>org.apache.maven.plugins</groupId> |
625 | 631 | <artifactId>maven-javadoc-plugin</artifactId> |
626 | | - <version>2.10.4</version> |
| 632 | + <version>${javadoc.version}</version> |
627 | 633 | <configuration> |
628 | 634 | <excludePackageNames> |
629 | 635 | org.hyperledger.fabric_ca.sdk.helper:org.hyperledger.fabric.protos.*:org.hyperledger.fabric.sdk.helper:org.hyperledger.fabric.sdk.transaction:org.hyperledger.fabric.sdk.security |
|
0 commit comments