178 lines
4.7 KiB
XML
178 lines
4.7 KiB
XML
<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.jooq</groupId>
|
|
<artifactId>jooq-parent</artifactId>
|
|
<version>3.0.0-RC3</version>
|
|
</parent>
|
|
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-maven-example</artifactId>
|
|
<name>jOOQ Codegen Maven (Example)</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.16</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.9</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.modelmapper</groupId>
|
|
<artifactId>modelmapper</artifactId>
|
|
<version>0.5.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.3.168</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>persistence-api</artifactId>
|
|
<version>1.0.2</version>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- The H2 test schema is loaded here -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>sql-maven-plugin</artifactId>
|
|
<version>1.5</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.3.168</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- common configuration shared by all executions -->
|
|
<configuration>
|
|
<driver>org.h2.Driver</driver>
|
|
<url>jdbc:h2:~/maven-test</url>
|
|
<username>sa</username>
|
|
<password></password>
|
|
<!--all executions are ignored if -Dmaven.test.skip=true -->
|
|
<skip>${maven.test.skip}</skip>
|
|
</configuration>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>create-database</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>execute</goal>
|
|
</goals>
|
|
<configuration>
|
|
<autocommit>true</autocommit>
|
|
<srcFiles>
|
|
<srcFile>src/test/resources/db.sql</srcFile>
|
|
</srcFiles>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- The jOOQ code generator plugin for Postgres / Sybase ASE / MySQL -->
|
|
<plugin>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-maven</artifactId>
|
|
<version>3.0.0-RC3</version>
|
|
<executions>
|
|
<execution>
|
|
<id>exec1</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<jdbc>
|
|
<driver>org.h2.Driver</driver>
|
|
<url>jdbc:h2:~/maven-test</url>
|
|
<user>sa</user>
|
|
<password></password>
|
|
</jdbc>
|
|
<generator>
|
|
<name>org.jooq.util.DefaultGenerator</name>
|
|
<database>
|
|
<name>org.jooq.util.h2.H2Database</name>
|
|
<includes>.*</includes>
|
|
<excludes></excludes>
|
|
<dateAsTimestamp>true</dateAsTimestamp>
|
|
<inputSchema>PUBLIC</inputSchema>
|
|
</database>
|
|
<generate>
|
|
<deprecated>false</deprecated>
|
|
<instanceFields>true</instanceFields>
|
|
<pojos>true</pojos>
|
|
<globalObjectReferences>false</globalObjectReferences>
|
|
</generate>
|
|
<target>
|
|
<packageName>org.jooq.maven.example.h2</packageName>
|
|
<directory>target/generated-test-sources/jooq-h2</directory>
|
|
</target>
|
|
</generator>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.3.168</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project> |