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.verification</groupId>
21 <artifactId>yosql-verification</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>yosql-verification-yeps</artifactId>
31 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35 <name>YoSQL :: Verification :: YEPs</name>
36 <description>YoSQL Enhance Proposals (YEPs) describe the overall user experience when working with YoSQL</description>
38 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- https://maven.apache.org/pom.html#Dependencies -->
44 <groupId>wtf.metio.yosql.models</groupId>
45 <artifactId>yosql-models-immutables</artifactId>
46 <version>${project.version}</version>
50 <groupId>io.cucumber</groupId>
51 <artifactId>cucumber-java</artifactId>
55 <groupId>org.apiguardian</groupId>
56 <artifactId>apiguardian-api</artifactId>
61 <groupId>io.cucumber</groupId>
62 <artifactId>cucumber-picocontainer</artifactId>
66 <groupId>com.zaxxer</groupId>
67 <artifactId>HikariCP</artifactId>
71 <groupId>org.junit.jupiter</groupId>
72 <artifactId>junit-jupiter-engine</artifactId>
76 <groupId>io.cucumber</groupId>
77 <artifactId>cucumber-junit-platform-engine</artifactId>
85 <groupId>wtf.metio.yosql.tooling</groupId>
86 <artifactId>yosql-tooling-maven</artifactId>
87 <version>${project.version}</version>
90 <inputBaseDirectory>src/test/yosql/ALL</inputBaseDirectory>
91 <outputBaseDirectory>target/generated-test-sources/yosql</outputBaseDirectory>
92 <skipLines>6</skipLines>
97 <phase>generate-sources</phase>
105 <groupId>org.codehaus.mojo</groupId>
106 <artifactId>build-helper-maven-plugin</artifactId>
107 <version>3.3.0</version>
111 <phase>generate-sources</phase>
113 <goal>add-source</goal>
117 <source>${project.build.directory}/generated-test-sources/yosql</source>