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-codegen</artifactId>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>YoSQL :: Benchmarks :: Codegen</name>
38 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- https://maven.apache.org/pom.html#Dependencies -->
44 <groupId>wtf.metio.yosql.codegen</groupId>
45 <artifactId>yosql-codegen</artifactId>
46 <version>${project.version}</version>
49 <groupId>wtf.metio.yosql.tooling</groupId>
50 <artifactId>yosql-tooling-dagger</artifactId>
51 <version>${project.version}</version>
54 <groupId>wtf.metio.yosql.internals</groupId>
55 <artifactId>yosql-internals-testing-configs</artifactId>
56 <version>${project.version}</version>
60 <groupId>org.openjdk.jmh</groupId>
61 <artifactId>jmh-core</artifactId>
64 <groupId>org.openjdk.jmh</groupId>
65 <artifactId>jmh-generator-annprocess</artifactId>
66 <scope>provided</scope>
69 <groupId>org.slf4j</groupId>
70 <artifactId>slf4j-simple</artifactId>
80 <groupId>com.baidu.maven</groupId>
81 <artifactId>jmh-maven-plugin</artifactId>
82 <version>1.0.3</version>
93 <warmupForks>1</warmupForks>
96 <timeUnit>s</timeUnit>
97 <measurementTime>1s</measurementTime>
98 <warmupTime>1s</warmupTime>
99 <resultFormat>json</resultFormat>
100 <resultFile>yosql-benchmarks-codegen.json</resultFile>