Skip to content
/ SQLib Public

A libarary to help write and execute sql statements for jdbc, uses hikariCP and H2Database.

Notifications You must be signed in to change notification settings

pigaut/SQLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Add SQLib as a maven dependency

<dependency>
    <groupId>io.github.pigaut.lib.sql</groupId>
    <artifactId>SQLib</artifactId>
    <version>1.3</version>
</dependency>

Shading

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>3.6.0</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                    <configuration>
                        <relocations>
                            <relocation>
                                <pattern>io.github.pigaut.lib.sql</pattern>
                                <shadedPattern>YOUR_PACKAGE.shaded.sqlib</shadedPattern>
                            </relocation>
                        </relocations>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Replace YOUR_PACKAGE with your own package namespace where SQLib will be shaded.

About

A libarary to help write and execute sql statements for jdbc, uses hikariCP and H2Database.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages