Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need to fix Helidon SE - DB Client doc #2809

Closed
shukawam opened this issue Feb 26, 2021 · 0 comments
Closed

Need to fix Helidon SE - DB Client doc #2809

shukawam opened this issue Feb 26, 2021 · 0 comments
Assignees
Labels
DB client Helidon DB Client docs P2

Comments

@shukawam
Copy link

The dependencies included in Getting Started are incorrect.

now: com.h2.database

<dependencies>
     <dependency>
         <groupId>io.helidon.dbclient</groupId> 
         <artifactId>helidon-dbclient</artifactId>
     </dependency>
     <dependency>
         <groupId>io.helidon.dbclient</groupId> 
         <artifactId>helidon-dbclient-jdbc</artifactId>
     </dependency>
     <dependency>
         <groupId>com.h2.database</groupId> 
         <artifactId>h2</artifactId>
         <version>1.4.200</version>
    </dependency>
</dependencies>

should be: com.h2database

<dependencies>
     <dependency>
         <groupId>io.helidon.dbclient</groupId> 
         <artifactId>helidon-dbclient</artifactId>
     </dependency>
     <dependency>
         <groupId>io.helidon.dbclient</groupId> 
         <artifactId>helidon-dbclient-jdbc</artifactId>
     </dependency>
     <dependency>
         <groupId>com.h2database</groupId> 
         <artifactId>h2</artifactId>
         <version>1.4.200</version>
    </dependency>
</dependencies>
@m0mus m0mus added docs DB client Helidon DB Client labels Mar 4, 2021
@m0mus m0mus added the P2 label Mar 4, 2021
barchetta added a commit to barchetta/helidon that referenced this issue Mar 4, 2021
paulparkinson pushed a commit that referenced this issue Mar 29, 2021
* Fix #2809: h2 dependency in DB Client doc
aseovic pushed a commit to aseovic/helidon that referenced this issue Apr 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DB client Helidon DB Client docs P2
Projects
Archived in project
Development

No branches or pull requests

3 participants