|
22 | 22 | ~ |
23 | 23 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> |
24 | 24 |
|
25 | | -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
26 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 25 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
27 | 26 | <modelVersion>4.0.0</modelVersion> |
28 | 27 | <name>QuestDB</name> |
29 | 28 | <description>QuestDB is high performance SQL time series database</description> |
|
39 | 38 | <test.include>%regex[.*[^o].class]</test.include><!-- exclude module-info.class--> |
40 | 39 | </properties> |
41 | 40 |
|
42 | | - <version>1.0.0-SNAPSHOT</version> |
| 41 | + <version>1.0.1-SNAPSHOT</version> |
43 | 42 | <groupId>org.questdb</groupId> |
44 | 43 | <artifactId>client</artifactId> |
45 | 44 | <packaging>jar</packaging> |
|
63 | 62 | <scm> |
64 | 63 | <url>scm:git:https://github.com/questdb/java-questdb-client.git</url> |
65 | 64 | <connection>scm:git:https://github.com/questdb/java-questdb-client.git</connection> |
66 | | - <tag>1.0.0</tag> |
| 65 | + <tag>HEAD</tag> |
67 | 66 | </scm> |
68 | 67 |
|
69 | 68 |
|
|
166 | 165 | <artifactId>maven-surefire-plugin</artifactId> |
167 | 166 | <version>3.5.3</version> |
168 | 167 | <configuration> |
169 | | - <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> |
| 168 | + <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory" /> |
170 | 169 | <argLine>-Dslf4j.provider=ch.qos.logback.classic.spi.LogbackServiceProvider</argLine> |
171 | 170 | <useModulePath>true</useModulePath> |
172 | 171 | <includes> |
|
198 | 197 | </execution> |
199 | 198 | </executions> |
200 | 199 | <configuration> |
| 200 | + <doclint>none</doclint> |
| 201 | + <source>11</source> |
| 202 | + <detectJavaApiLink>false</detectJavaApiLink> |
201 | 203 | <additionalJOptions> |
202 | 204 | <additionalJOption>${compilerArg1}</additionalJOption> |
203 | 205 | <additionalJOption>${compilerArg2}</additionalJOption> |
204 | 206 | </additionalJOptions> |
205 | 207 | <sourceFileExcludes> |
206 | 208 | <sourceFileExclude>${excludePattern1}</sourceFileExclude> |
| 209 | + <sourceFileExclude>module-info.java</sourceFileExclude> |
207 | 210 | </sourceFileExcludes> |
208 | 211 | </configuration> |
209 | 212 | </plugin> |
|
292 | 295 | </execution> |
293 | 296 | </executions> |
294 | 297 | <configuration> |
| 298 | + <doclint>none</doclint> |
| 299 | + <source>11</source> |
| 300 | + <detectJavaApiLink>false</detectJavaApiLink> |
295 | 301 | <additionalJOptions> |
296 | 302 | <additionalJOption>${compilerArg1}</additionalJOption> |
297 | 303 | <additionalJOption>${compilerArg2}</additionalJOption> |
298 | 304 | </additionalJOptions> |
299 | 305 | <sourceFileExcludes> |
300 | 306 | <sourceFileExclude>${excludePattern1}</sourceFileExclude> |
| 307 | + <sourceFileExclude>module-info.java</sourceFileExclude> |
301 | 308 | </sourceFileExcludes> |
302 | 309 | </configuration> |
303 | 310 | </plugin> |
|
0 commit comments