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.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-dao</artifactId>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>YoSQL :: Benchmarks :: DAO</name>
38 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- https://maven.apache.org/pom.html#Dependencies -->
44 <groupId>org.openjdk.jmh</groupId>
45 <artifactId>jmh-core</artifactId>
48 <groupId>org.openjdk.jmh</groupId>
49 <artifactId>jmh-generator-annprocess</artifactId>
50 <scope>provided</scope>
53 <groupId>com.zaxxer</groupId>
54 <artifactId>HikariCP</artifactId>
57 <groupId>com.h2database</groupId>
58 <artifactId>h2</artifactId>
61 <groupId>org.apache.logging.log4j</groupId>
62 <artifactId>log4j-api</artifactId>
65 <groupId>org.apache.logging.log4j</groupId>
66 <artifactId>log4j-core</artifactId>
69 <groupId>ch.qos.logback</groupId>
70 <artifactId>logback-classic</artifactId>
73 <groupId>org.tinylog</groupId>
74 <artifactId>tinylog-impl</artifactId>
81 <groupId>wtf.metio.yosql.tooling</groupId>
82 <artifactId>yosql-tooling-maven</artifactId>
83 <version>${project.version}</version>
86 <skipLines>6</skipLines>
89 <apiVersion>16</apiVersion>
95 <phase>generate-sources</phase>
104 <outputBaseDirectory>target/generated-sources/jul</outputBaseDirectory>
107 <basePackageName>wtf.metio.yosql.benchmark.dao.jul.persistence</basePackageName>
111 wtf.metio.yosql.benchmark.dao.jul.persistence.converter.ToMapConverter
118 <phase>generate-sources</phase>
120 <goal>generate</goal>
127 <outputBaseDirectory>target/generated-sources/log4j</outputBaseDirectory>
130 <basePackageName>wtf.metio.yosql.benchmark.dao.log4j.persistence</basePackageName>
134 wtf.metio.yosql.benchmark.dao.log4j.persistence.converter.ToMapConverter
141 <phase>generate-sources</phase>
143 <goal>generate</goal>
150 <outputBaseDirectory>target/generated-sources/noop</outputBaseDirectory>
153 <basePackageName>wtf.metio.yosql.benchmark.dao.noop.persistence</basePackageName>
157 wtf.metio.yosql.benchmark.dao.noop.persistence.converter.ToMapConverter
164 <phase>generate-sources</phase>
166 <goal>generate</goal>
173 <outputBaseDirectory>target/generated-sources/slf4j</outputBaseDirectory>
176 <basePackageName>wtf.metio.yosql.benchmark.dao.slf4j.persistence</basePackageName>
180 wtf.metio.yosql.benchmark.dao.slf4j.persistence.converter.ToMapConverter
187 <phase>generate-sources</phase>
189 <goal>generate</goal>
196 <outputBaseDirectory>target/generated-sources/system</outputBaseDirectory>
199 <basePackageName>wtf.metio.yosql.benchmark.dao.system.persistence</basePackageName>
203 wtf.metio.yosql.benchmark.dao.system.persistence.converter.ToMapConverter
210 <phase>generate-sources</phase>
212 <goal>generate</goal>
219 <outputBaseDirectory>target/generated-sources/tinylog</outputBaseDirectory>
222 <basePackageName>wtf.metio.yosql.benchmark.dao.tinylog.persistence</basePackageName>
226 wtf.metio.yosql.benchmark.dao.tinylog.persistence.converter.ToMapConverter
234 <groupId>org.codehaus.mojo</groupId>
235 <artifactId>build-helper-maven-plugin</artifactId>
239 <phase>generate-sources</phase>
241 <goal>add-source</goal>
245 <source>${project.build.directory}/generated-sources/jul</source>
246 <source>${project.build.directory}/generated-sources/log4j</source>
247 <source>${project.build.directory}/generated-sources/noop</source>
248 <source>${project.build.directory}/generated-sources/slf4j</source>
249 <source>${project.build.directory}/generated-sources/system</source>
250 <source>${project.build.directory}/generated-sources/tinylog</source>
265 <groupId>com.baidu.maven</groupId>
266 <artifactId>jmh-maven-plugin</artifactId>
269 <phase>verify</phase>
277 <warmupForks>1</warmupForks>
280 <timeUnit>us</timeUnit>
281 <measurementTime>1s</measurementTime>
282 <warmupTime>1s</warmupTime>
283 <resultFormat>json</resultFormat>
284 <resultFile>yosql-benchmarks-dao.json</resultFile>