Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<?xml version="1.0" encoding="UTF-8"?> | |
<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/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-parent</artifactId> | |
<version>2.1.3.RELEASE</version> | |
<relativePath /> | |
</parent> | |
<groupId>ch.rasc</groupId> | |
<artifactId>sbjooqflyway</artifactId> | |
<version>0.0.1</version> | |
<name>sbjooqflyway</name> | |
<properties> | |
<java.version>11</java.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-jooq</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.flywaydb</groupId> | |
<artifactId>flyway-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.mariadb.jdbc</groupId> | |
<artifactId>mariadb-java-client</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi</artifactId> | |
<version>4.0.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi-ooxml</artifactId> | |
<version>4.0.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.univocity</groupId> | |
<artifactId>univocity-parsers</artifactId> | |
<version>2.8.1</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>build-helper-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>generate-sources</phase> | |
<goals> | |
<goal>add-source</goal> | |
</goals> | |
<configuration> | |
<sources> | |
<source>target/generated-sources/jooq</source> | |
</sources> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<profiles> | |
<profile> | |
<id>jooq</id> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.jooq</groupId> | |
<artifactId>jooq-codegen-maven</artifactId> | |
<executions> | |
<execution> | |
<id>generate-jooq-sources</id> | |
<phase>generate-sources</phase> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
<configuration> | |
<generator> | |
<generate> | |
<pojos>true</pojos> | |
<daos>true</daos> | |
<pojosEqualsAndHashCode>true</pojosEqualsAndHashCode> | |
<javaTimeTypes>true</javaTimeTypes> | |
</generate> | |
<database> | |
<name>org.jooq.meta.extensions.ddl.DDLDatabase</name> | |
<inputCatalog></inputCatalog> | |
<inputSchema>PUBLIC</inputSchema> | |
<outputSchemaToDefault>true</outputSchemaToDefault> | |
<outputCatalogToDefault>true</outputCatalogToDefault> | |
<properties> | |
<property> | |
<key>sort</key> | |
<value>semantic</value> | |
</property> | |
<property> | |
<key>scripts</key> | |
<value>src/main/resources/db/migration/*</value> | |
</property> | |
</properties> | |
</database> | |
<target> | |
<clean>true</clean> | |
<packageName>ch.rasc.sbjooqflyway.db</packageName> | |
<directory>target/generated-sources/jooq</directory> | |
</target> | |
</generator> | |
</configuration> | |
</execution> | |
</executions> | |
<dependencies> | |
<dependency> | |
<groupId>org.jooq</groupId> | |
<artifactId>jooq-meta-extensions</artifactId> | |
<version>3.11.9</version> | |
</dependency> | |
</dependencies> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
</profiles> | |
</project> |