timeplus-io / timeplus-native-jdbc

Timeplus JDBC driver which speaks native TCP protocol to Timeplus Core
Apache License 2.0
1 stars 0 forks source link

Should not use `com.github.timeplus` #27

Closed jovezhong closed 3 months ago

jovezhong commented 3 months ago

The maven group id is com.github.timeplus today, the Java package is com.github.timeplus.jdbc

<dependency>
    <groupId>com.github.timeplus</groupId>
    <artifactId>timeplus-native-jdbc-shaded</artifactId>
    <version>..</version>
</dependency>

This is not appropriate. Similar to the proton JDBC driver

<dependency>
    <groupId>com.timeplus</groupId>
    <artifactId>proton-jdbc</artifactId>
    <version>0.6.0</version>
</dependency>

this package should be

<dependency>
    <groupId>com.timeplus</groupId>
    <artifactId>timeplus-native-jdbc</artifactId>
    <version>..</version>
</dependency>

Need to git mv the Java code and test code, as well as README/maven settings before we make it public

chenziliang commented 3 months ago

we will need replace com.github.timeplus with com.timeplus everywhere