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 https://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.maven</groupId>
21 <artifactId>yosql-examples-maven</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>yosql-examples-maven-jdbc-java9</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Examples :: Maven :: JDBC/Java9</name>
37 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- https://maven.apache.org/pom.html#Dependencies -->
43 <groupId>wtf.metio.yosql.examples</groupId>
44 <artifactId>yosql-examples-common</artifactId>
45 <version>${project.version}</version>
48 <groupId>com.h2database</groupId>
49 <artifactId>h2</artifactId>
50 <scope>runtime</scope>
57 <groupId>wtf.metio.yosql.tooling</groupId>
58 <artifactId>yosql-tooling-maven</artifactId>
61 <skipLines>6</skipLines>
62 <inputBaseDirectory>../../yosql-examples-common/src/main/yosql</inputBaseDirectory>
65 <apiVersion>9</apiVersion>
66 <useVar>false</useVar>
67 <useTextBlocks>false</useTextBlocks>
70 <basePackageName>wtf.metio.yosql.example.maven.jdbc.java9.persistence</basePackageName>
71 <generateInterfaces>false</generateInterfaces>
75 wtf.metio.yosql.example.maven.jdbc.java9.persistence.converter.ToMapConverter
79 <alias>itemConverter</alias>
80 <converterType>wtf.metio.yosql.example.maven.jdbc.java9.converter.ToItemConverter</converterType>
81 <methodName>asUserType</methodName>
82 <resultType>wtf.metio.yosql.example.maven.jdbc.java9.model.Item</resultType>
89 <groupId>org.codehaus.mojo</groupId>
90 <artifactId>exec-maven-plugin</artifactId>
100 <mainClass>wtf.metio.yosql.example.maven.jdbc.java9.ExampleApp</mainClass>