1 <?xml version="1.0" encoding="UTF-8"?>
3 ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
4 ~ directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
5 ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained
8 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9 xmlns="http://maven.apache.org/POM/4.0.0"
10 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11 <modelVersion>4.0.0</modelVersion>
13 <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18 <!-- https://maven.apache.org/pom.html#Inheritance -->
20 <groupId>wtf.metio.yosql.examples</groupId>
21 <artifactId>yosql-examples</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
30 <groupId>wtf.metio.yosql.examples.maven</groupId>
31 <artifactId>yosql-examples-maven</artifactId>
32 <packaging>pom</packaging>
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
38 <name>YoSQL :: Examples :: Maven</name>
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
43 <!-- https://maven.apache.org/pom.html#Aggregation -->
45 <module>yosql-examples-maven-jdbc-java4</module>
46 <module>yosql-examples-maven-jdbc-java5</module>
47 <module>yosql-examples-maven-jdbc-java7</module>
48 <module>yosql-examples-maven-jdbc-java8</module>
49 <module>yosql-examples-maven-jdbc-java9</module>
50 <module>yosql-examples-maven-jdbc-java11</module>
51 <module>yosql-examples-maven-jdbc-java14</module>
52 <module>yosql-examples-maven-jdbc-java16</module>
55 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
57 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
58 <!-- https://maven.apache.org/pom.html#Dependencies -->
61 <groupId>com.zaxxer</groupId>
62 <artifactId>HikariCP</artifactId>
65 <groupId>com.h2database</groupId>
66 <artifactId>h2</artifactId>
69 <groupId>io.reactivex.rxjava2</groupId>
70 <artifactId>rxjava</artifactId>
71 <version>2.2.21</version>
79 <groupId>wtf.metio.yosql.tooling</groupId>
80 <artifactId>yosql-tooling-maven</artifactId>
81 <version>${project.version}</version>
84 <phase>generate-sources</phase>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>build-helper-maven-plugin</artifactId>
97 <version>3.2.0</version>
101 <phase>generate-sources</phase>
103 <goal>add-source</goal>
107 <source>${project.build.directory}/generated-sources/yosql</source>