366 lines
13 KiB
XML
366 lines
13 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>oss-parent</artifactId>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-parent</artifactId>
|
|
<version>3.2.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>jOOQ Parent</name>
|
|
|
|
<description>
|
|
jOOQ effectively combines complex SQL, typesafety, source code generation, active records,
|
|
stored procedures, advanced data types, and Java in a fluent, intuitive DSL.
|
|
</description>
|
|
|
|
<url>http://www.jooq.org</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>http://www.jooq.org/inc/LICENSE.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<developerConnection>https://github.com/jOOQ/jOOQ.git</developerConnection>
|
|
<url>https://github.com/jOOQ/jOOQ.git</url>
|
|
<connection>git://github.com/jOOQ/jOOQ.git</connection>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>http://github.com/jOOQ/jOOQ/issues</url>
|
|
</issueManagement>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Lukas Eder</name>
|
|
<email>lukas.eder@gmail.com</email>
|
|
<roles>
|
|
<role>architect</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Espen Stromsnes</name>
|
|
<email>estromsnes@gmail.com</email>
|
|
<roles>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Christopher Deckers</name>
|
|
<email>chrriis@gmail.com</email>
|
|
<roles>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Aaron Digulla</name>
|
|
<email>digulla@hepe.com</email>
|
|
<roles>
|
|
<role>codegen-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Ben Manes</name>
|
|
<email>ben.manes@gmail.com</email>
|
|
<roles>
|
|
<role>gradle-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Ed Schaller</name>
|
|
<email>schallee@darkmist.net</email>
|
|
<roles>
|
|
<role>unsigned-datatype-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Ivan Dugic</name>
|
|
<email>idugic@gmail.com</email>
|
|
<roles>
|
|
<role>core-implementations</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Peter Ertl</name>
|
|
<roles>
|
|
<role>maven-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Robin Stocker</name>
|
|
<email>robin@nibor.org</email>
|
|
<roles>
|
|
<role>git-support</role>
|
|
<role>scala-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Sander Plas</name>
|
|
<email>sander.plas@gmail.com</email>
|
|
<roles>
|
|
<role>maven-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Sergey Epik</name>
|
|
<email>sergey.epik@gmail.com</email>
|
|
<roles>
|
|
<role>spring-support</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Sugiharto Lim</name>
|
|
<email>truesaint@gmail.com</email>
|
|
<roles>
|
|
<role>firebird-support</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<modules>
|
|
<module>jOOQ</module>
|
|
<module>jOOQ-codegen</module>
|
|
<module>jOOQ-codegen-gradle</module>
|
|
<module>jOOQ-codegen-maven</module>
|
|
<!--<module>jOOQ-codegen-maven-example</module>-->
|
|
<!--<module>jOOQ-console</module>-->
|
|
<module>jOOQ-meta</module>
|
|
<module>jOOQ-scala</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<version.gradle>1.6</version.gradle>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-maven</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-gradle</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-meta</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-scala</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<!--
|
|
These additions were introduced with #2711, #2287 by Ben Manes
|
|
Sonatype strongly recommends not to reference any third-party
|
|
Maven repositories from artefact published to Maven Central.
|
|
|
|
There must be another way to solve these issues:
|
|
<repositories>
|
|
<repository>
|
|
<id>maven-central</id>
|
|
<url>http://repo1.maven.org/maven2</url>
|
|
</repository>
|
|
<repository>
|
|
<id>gradle</id>
|
|
<url>http://repo.gradle.org/gradle/libs-releases-local</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>gradle-workaround</id>
|
|
<url>http://flywaydb.org/repo</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
-->
|
|
|
|
<build>
|
|
<defaultGoal>deploy</defaultGoal>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<fork>true</fork>
|
|
<maxmem>512m</maxmem>
|
|
<meminitial>256m</meminitial>
|
|
<encoding>UTF-8</encoding>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<debug>true</debug>
|
|
<debuglevel>lines,vars,source</debuglevel>
|
|
<compilerArguments>
|
|
<!-- [#2413] Make compiler warnings a bit more visible
|
|
But don't fail (yet) -->
|
|
<Xlint:-varargs/>
|
|
</compilerArguments>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<inherited>true</inherited>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<excludeResources>true</excludeResources>
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- If generated test sources are available, attach them to the
|
|
test source path -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-test-sources</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>add-test-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>${project.build.directory}/generated-test-sources/jooq-h2</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<downloadSources>true</downloadSources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<!-- The release profile is used only for releasing jOOQ to
|
|
the Sonatype Maven repository or to Maven central
|
|
lengthy or annoying operations for everyday use by users
|
|
building jOOQ themselves are put here -->
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<inherited>true</inherited>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle-sources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<maxmemory>512</maxmemory>
|
|
<encoding>UTF-8</encoding>
|
|
<show>protected</show>
|
|
<notree>true</notree>
|
|
<header>
|
|
<![CDATA[
|
|
<script type="text/javascript">
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-30716479-1']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
</script>
|
|
]]>
|
|
</header>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|