|
28 | 28 | <artifactId>hugegraph-computer</artifactId> |
29 | 29 | <version>${revision}</version> |
30 | 30 | <packaging>pom</packaging> |
31 | | - <prerequisites> |
32 | | - <maven>3.3.9</maven> |
33 | | - </prerequisites> |
34 | 31 | <name>hugegraph-computer</name> |
35 | 32 | <url>https://github.com/apache/hugegraph-computer</url> |
36 | 33 | <description> |
|
46 | 43 | </license> |
47 | 44 | </licenses> |
48 | 45 |
|
| 46 | + <developers> |
| 47 | + <developer> |
| 48 | + <id>Apache Hugegraph(incubating)</id> |
| 49 | + <email>dev-subscribe@hugegraph.apache.org</email> |
| 50 | + <url>https://hugegraph.apache.org/</url> |
| 51 | + </developer> |
| 52 | + </developers> |
| 53 | + |
| 54 | + <mailingLists> |
| 55 | + <mailingList> |
| 56 | + <name>Development List</name> |
| 57 | + <subscribe>dev-subscribe@hugegraph.apache.org</subscribe> |
| 58 | + <unsubscribe>dev-unsubscribe@hugegraph.apache.org</unsubscribe> |
| 59 | + <post>dev@hugegraph.incubator.apache.org</post> |
| 60 | + </mailingList> |
| 61 | + <mailingList> |
| 62 | + <name>Commits List</name> |
| 63 | + <subscribe>commits-subscribe@hugegraph.apache.org</subscribe> |
| 64 | + <unsubscribe>commits-unsubscribe@hugegraph.apache.org</unsubscribe> |
| 65 | + <post>commits@hugegraph.apache.org</post> |
| 66 | + </mailingList> |
| 67 | + <mailingList> |
| 68 | + <name>Issues List</name> |
| 69 | + <subscribe>issues-subscribe@hugegraph.apache.org</subscribe> |
| 70 | + <unsubscribe>issues-unsubscribe@hugegraph.apache.org</unsubscribe> |
| 71 | + <post>issues@hugegraph.apache.org</post> |
| 72 | + </mailingList> |
| 73 | + </mailingLists> |
| 74 | + |
| 75 | + <issueManagement> |
| 76 | + <system>Github Issues</system> |
| 77 | + <url>https://github.com/apache/hugegraph-computer/issues</url> |
| 78 | + </issueManagement> |
| 79 | + |
49 | 80 | <scm> |
50 | 81 | <url>https://github.com/apache/hugegraph-computer</url> |
51 | | - <connection>https://github.com/apache/hugegraph-computer</connection> |
52 | | - <developerConnection>https://github.com/apache/hugegraph-computer</developerConnection> |
| 82 | + <connection>scm:git:https://github.com/apache/hugegraph-computer.git</connection> |
| 83 | + <developerConnection>scm:git:https://github.com/apache/hugegraph-computer.git</developerConnection> |
53 | 84 | </scm> |
54 | 85 |
|
| 86 | + <prerequisites> |
| 87 | + <maven>3.5</maven> |
| 88 | + </prerequisites> |
| 89 | + |
55 | 90 | <properties> |
56 | 91 | <revision>1.0.0</revision> |
57 | 92 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
106 | 141 | </exclusion> |
107 | 142 | </exclusions> |
108 | 143 | </dependency> |
| 144 | + |
109 | 145 | <dependency> |
110 | 146 | <groupId>org.apache.hugegraph</groupId> |
111 | 147 | <artifactId>hugegraph-client</artifactId> |
112 | 148 | <version>${hugegraph-client-version}</version> |
113 | 149 | </dependency> |
114 | | - |
115 | 150 | <dependency> |
116 | 151 | <groupId>org.apache.hugegraph</groupId> |
117 | 152 | <artifactId>computer-algorithm</artifactId> |
118 | 153 | <version>${revision}</version> |
119 | 154 | </dependency> |
120 | | - |
121 | 155 | <dependency> |
122 | 156 | <groupId>org.apache.hugegraph</groupId> |
123 | 157 | <artifactId>computer-core</artifactId> |
124 | 158 | <version>${revision}</version> |
125 | 159 | </dependency> |
126 | | - |
127 | 160 | <dependency> |
128 | 161 | <groupId>org.apache.hugegraph</groupId> |
129 | 162 | <artifactId>computer-k8s-operator</artifactId> |
130 | 163 | <version>${revision}</version> |
131 | 164 | </dependency> |
132 | | - |
133 | 165 | <dependency> |
134 | 166 | <groupId>org.apache.hugegraph</groupId> |
135 | 167 | <artifactId>computer-yarn</artifactId> |
|
315 | 347 | </plugin> |
316 | 348 | <plugin> |
317 | 349 | <artifactId>maven-compiler-plugin</artifactId> |
| 350 | + <!-- Keep fix version to avoid computer-k8s-operator build error --> |
318 | 351 | <version>3.1</version> |
319 | 352 | <configuration> |
320 | 353 | <source>${compiler.source}</source> |
|
352 | 385 | <plugin> |
353 | 386 | <groupId>org.apache.maven.plugins</groupId> |
354 | 387 | <artifactId>maven-surefire-plugin</artifactId> |
355 | | - <version>2.20</version> |
356 | 388 | </plugin> |
357 | 389 | <plugin> |
358 | 390 | <artifactId>maven-clean-plugin</artifactId> |
359 | | - <version>3.0.0</version> |
360 | 391 | <configuration> |
361 | 392 | <filesets> |
362 | 393 | <fileset> |
|
404 | 435 | <plugin> |
405 | 436 | <groupId>org.apache.maven.plugins</groupId> |
406 | 437 | <artifactId>maven-surefire-plugin</artifactId> |
407 | | - <version>2.20</version> |
408 | 438 | <executions> |
409 | 439 | <execution> |
410 | 440 | <id>unit-test</id> |
|
428 | 458 | <plugin> |
429 | 459 | <groupId>org.apache.maven.plugins</groupId> |
430 | 460 | <artifactId>maven-surefire-plugin</artifactId> |
431 | | - <version>2.20</version> |
432 | 461 | <executions> |
433 | 462 | <execution> |
434 | 463 | <id>integrate-test</id> |
|
443 | 472 | </build> |
444 | 473 | </profile> |
445 | 474 | <profile> |
446 | | - <id>release</id> |
| 475 | + <id>apache-release</id> |
447 | 476 | <build> |
448 | 477 | <plugins> |
449 | 478 | <plugin> |
450 | 479 | <groupId>org.apache.maven.plugins</groupId> |
451 | 480 | <artifactId>maven-source-plugin</artifactId> |
452 | | - <version>2.2.1</version> |
453 | 481 | <executions> |
454 | 482 | <execution> |
455 | 483 | <id>attach-sources</id> |
|
462 | 490 | <plugin> |
463 | 491 | <groupId>org.apache.maven.plugins</groupId> |
464 | 492 | <artifactId>maven-javadoc-plugin</artifactId> |
465 | | - <version>2.9.1</version> |
466 | 493 | <executions> |
467 | 494 | <execution> |
468 | 495 | <id>attach-javadocs</id> |
|
472 | 499 | </execution> |
473 | 500 | </executions> |
474 | 501 | <configuration> |
475 | | - <additionalJOptions> |
476 | | - <additionalJOption>-Xdoclint:none</additionalJOption> |
477 | | - </additionalJOptions> |
| 502 | + <doclint>none</doclint> |
| 503 | + <failOnError>false</failOnError> |
478 | 504 | </configuration> |
479 | 505 | </plugin> |
480 | 506 | <plugin> |
481 | 507 | <groupId>org.apache.maven.plugins</groupId> |
482 | 508 | <artifactId>maven-gpg-plugin</artifactId> |
483 | | - <version>1.5</version> |
484 | 509 | <executions> |
485 | 510 | <execution> |
486 | 511 | <id>sign-artifacts</id> |
|
0 commit comments