project restructuring

This commit is contained in:
Jonathan Shook 2024-04-11 22:50:13 -05:00
parent 7810178f0c
commit 4358344029
2892 changed files with 1134 additions and 821 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
**/cache/**
exported_docs.zip exported_docs.zip
.nosqlbench/** .nosqlbench/**
workspaces/** workspaces/**

View File

@ -1,15 +0,0 @@
# example-scenarios.yaml
scenarios:
default:
one: run cycles=3 alias=A driver=stdout
two: run cycles=5 alias=B driver=stdout
namedsteps:
one: run cycles=3 alias=A driver=stdout testparam1=testvalue1
two: run cycles=5 alias=B driver=stdout
bindings:
cycle: Identity()
name: NumberNameToCycle()
ops:
cycle: "cycle {cycle}\n"

View File

@ -1,10 +0,0 @@
# example-scenarios.yaml
scenarios:
default:
first: run cycles=3 alias=A driver=stdout tvar1=replaced
second: run cycles=5 alias=B driver=stdout
bindings:
cycle: Identity()
name: NumberNameToCycle()
ops:
cycle: "cycle {cycle} TEMPLATE(tvar1,def1) TEMPLATE(tvar1)\n"

View File

@ -44,7 +44,7 @@
</properties> </properties>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<url>http://nosqlbench.io/</url> <url>https://nosqlbench.io/</url>
<description> <description>
nosqlbench is the core of a programmable workload simulation runtime. nosqlbench is the core of a programmable workload simulation runtime.
This module acts as the parent pom for nosqlbench Maven modules. This module acts as the parent pom for nosqlbench Maven modules.
@ -549,6 +549,7 @@
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<executions> <executions>
<execution> <execution>
<id>prepare-agent</id> <id>prepare-agent</id>
@ -807,13 +808,13 @@
<name>Jonathan Shook</name> <name>Jonathan Shook</name>
<email>jshook@gmail.com</email> <email>jshook@gmail.com</email>
<organization>nosqlbench.io</organization> <organization>nosqlbench.io</organization>
<organizationUrl>http://nosqlbench.io/</organizationUrl> <organizationUrl>https://nosqlbench.io/</organizationUrl>
</developer> </developer>
<developer> <developer>
<name>Sebastián Estévez</name> <name>Sebastián Estévez</name>
<email>estevezsebastian@gmail.com</email> <email>estevezsebastian@gmail.com</email>
<organization>nosqlbench.io</organization> <organization>nosqlbench.io</organization>
<organizationUrl>http://nosqlbench.io/</organizationUrl> <organizationUrl>https://nosqlbench.io/</organizationUrl>
</developer> </developer>
</developers> </developers>
@ -861,7 +862,7 @@
</profile> </profile>
<profile> <profile>
<id>javadoc</id> <id>build-javadoc</id>
<activation> <activation>
<activeByDefault>true</activeByDefault> <activeByDefault>true</activeByDefault>
</activation> </activation>

View File

@ -24,7 +24,7 @@
<artifactId>mvn-defaults</artifactId> <artifactId>mvn-defaults</artifactId>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<version>${revision}</version> <version>${revision}</version>
<relativePath>../mvn-defaults</relativePath> <relativePath>../../mvn-defaults</relativePath>
</parent> </parent>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>

View File

@ -26,7 +26,7 @@
<artifactId>mvn-defaults</artifactId> <artifactId>mvn-defaults</artifactId>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<version>${revision}</version> <version>${revision}</version>
<relativePath>../mvn-defaults</relativePath> <relativePath>../../mvn-defaults</relativePath>
</parent> </parent>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>

View File

@ -21,7 +21,7 @@
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<artifactId>mvn-defaults</artifactId> <artifactId>mvn-defaults</artifactId>
<version>${revision}</version> <version>${revision}</version>
<relativePath>../mvn-defaults</relativePath> <relativePath>../../mvn-defaults</relativePath>
</parent> </parent>
<artifactId>adapter-cqld4</artifactId> <artifactId>adapter-cqld4</artifactId>
@ -29,7 +29,7 @@
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<description> <description>
A CQL ActivityType driver for http://nosqlbench.io/ A CQL ActivityType driver for https://nosqlbench.io/
</description> </description>
<dependencies> <dependencies>

Some files were not shown because too many files have changed in this diff Show More