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.benchmarks</groupId>
21 <artifactId>yosql-benchmarks</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
30 <artifactId>yosql-benchmarks-jdbc</artifactId>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>YoSQL :: Benchmarks :: JDBC</name>
38 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- https://maven.apache.org/pom.html#Dependencies -->
44 <groupId>wtf.metio.yosql.testing</groupId>
45 <artifactId>yosql-testing-sql-files</artifactId>
46 <version>${project.version}</version>
49 <groupId>org.openjdk.jmh</groupId>
50 <artifactId>jmh-core</artifactId>
53 <groupId>org.openjdk.jmh</groupId>
54 <artifactId>jmh-generator-annprocess</artifactId>
55 <scope>provided</scope>
58 <groupId>org.slf4j</groupId>
59 <artifactId>slf4j-simple</artifactId>
62 <groupId>com.zaxxer</groupId>
63 <artifactId>HikariCP</artifactId>
66 <groupId>com.h2database</groupId>
67 <artifactId>h2</artifactId>
70 <groupId>io.reactivex.rxjava2</groupId>
71 <artifactId>rxjava</artifactId>
72 <version>2.2.21</version>
79 <groupId>wtf.metio.yosql.tooling</groupId>
80 <artifactId>yosql-tooling-maven</artifactId>
81 <version>${project.version}</version>
84 <skipLines>6</skipLines>
87 <apiVersion>16</apiVersion>
90 <basePackageName>wtf.metio.yosql.benchmark.jdbc.persistence</basePackageName>
93 <utilityPackageName>wtf.metio.yosql.benchmark.jdbc.persistence.util</utilityPackageName>
98 <phase>generate-sources</phase>
100 <goal>generate</goal>
106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>build-helper-maven-plugin</artifactId>
108 <version>3.2.0</version>
112 <phase>generate-sources</phase>
114 <goal>add-source</goal>
118 <source>${project.build.directory}/generated-sources/yosql</source>
133 <groupId>com.baidu.maven</groupId>
134 <artifactId>jmh-maven-plugin</artifactId>
135 <version>1.0.3</version>
146 <warmupForks>1</warmupForks>
149 <timeUnit>us</timeUnit>
150 <measurementTime>1s</measurementTime>
151 <warmupTime>1s</warmupTime>
152 <resultFormat>json</resultFormat>
153 <resultFile>yosql-benchmarks-jdbc.json</resultFile>