vaadin / starters

Issue repository for all the starter projects in https://vaadin.com/start
3 stars 0 forks source link

Scope of driver dependency #95

Closed simasch closed 1 year ago

simasch commented 1 year ago
    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
    </dependency>

should be

    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <scope>runtime</scope>
    </dependency>

Usually the developer doesn't want to directly interact with the database driver classes.

Artur- commented 1 year ago

This has been fixed and deployed