|
56 | 56 |
|
57 | 57 | <build>
|
58 | 58 | <plugins>
|
| 59 | + |
59 | 60 | <plugin>
|
60 | 61 | <groupId>org.apache.maven.plugins</groupId>
|
61 | 62 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
64 | 65 | <dependencySourceExclude>org.apache.geode:geode-gfsh</dependencySourceExclude>
|
65 | 66 | </dependencySourceExcludes>
|
66 | 67 | <failOnWarnings>false</failOnWarnings>
|
67 |
| - <links> |
| 68 | + <links combine.children="append"> |
68 | 69 | <link>https://geode.apache.org/releases/latest/javadoc/</link>
|
69 | 70 | </links>
|
70 | 71 | </configuration>
|
71 | 72 | </plugin>
|
| 73 | + |
| 74 | + <plugin> |
| 75 | + <groupId>org.apache.maven.plugins</groupId> |
| 76 | + <artifactId>maven-surefire-plugin</artifactId> |
| 77 | + <configuration> |
| 78 | + <argLine>--add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED</argLine> |
| 79 | + <includes> |
| 80 | + <include>**/*Tests.java</include> |
| 81 | + <include>**/*Test.java</include> |
| 82 | + </includes> |
| 83 | + <reuseForks>false</reuseForks> |
| 84 | + <systemProperties> |
| 85 | + <java.util.logging.config.file>${basedir}/src/test/resources/java-util-logging.properties</java.util.logging.config.file> |
| 86 | + <gemfire.disableShutdownHook>true</gemfire.disableShutdownHook> |
| 87 | + <logback.log.level>error</logback.log.level> |
| 88 | + <spring.profiles.active>apache-geode</spring.profiles.active> |
| 89 | + </systemProperties> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + |
72 | 93 | </plugins>
|
73 | 94 | </build>
|
74 | 95 |
|
75 |
| - <profiles> |
76 |
| - |
77 |
| - <profile> |
78 |
| - <id>ci</id> |
79 |
| - <build> |
80 |
| - <plugins> |
81 |
| - <plugin> |
82 |
| - <groupId>org.apache.maven.plugins</groupId> |
83 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
84 |
| - <configuration> |
85 |
| - <dependencySourceExcludes> |
86 |
| - <dependencySourceExclude>org.apache.geode:geode-gfsh</dependencySourceExclude> |
87 |
| - </dependencySourceExcludes> |
88 |
| - <failOnWarnings>false</failOnWarnings> |
89 |
| - <links> |
90 |
| - <link>https://geode.apache.org/releases/latest/javadoc/</link> |
91 |
| - </links> |
92 |
| - </configuration> |
93 |
| - </plugin> |
94 |
| - </plugins> |
95 |
| - </build> |
96 |
| - </profile> |
97 |
| - |
98 |
| - <profile> |
99 |
| - <id>distribute</id> |
100 |
| - <build> |
101 |
| - <plugins> |
102 |
| - <plugin> |
103 |
| - <groupId>org.apache.maven.plugins</groupId> |
104 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
105 |
| - <configuration> |
106 |
| - <dependencySourceExcludes> |
107 |
| - <dependencySourceExclude>org.apache.geode:geode-gfsh</dependencySourceExclude> |
108 |
| - </dependencySourceExcludes> |
109 |
| - <failOnWarnings>false</failOnWarnings> |
110 |
| - <links> |
111 |
| - <link>https://geode.apache.org/releases/latest/javadoc/</link> |
112 |
| - </links> |
113 |
| - </configuration> |
114 |
| - </plugin> |
115 |
| - </plugins> |
116 |
| - </build> |
117 |
| - </profile> |
118 |
| - |
119 |
| - </profiles> |
120 |
| - |
121 | 96 | <repositories>
|
122 | 97 |
|
123 | 98 | <repository>
|
|
137 | 112 | </releases>
|
138 | 113 | </repository>
|
139 | 114 |
|
140 |
| - <!-- |
| 115 | +<!-- |
141 | 116 | <repository>
|
142 | 117 | <id>apache-snapshots</id>
|
143 | 118 | <url>https://repository.apache.org/content/repositories/orgapachegeode-1060</url>
|
|
0 commit comments