2020-02-20 15:37:57 -06:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>mvn-defaults</artifactId>
|
2020-02-20 15:37:57 -06:00
|
|
|
<groupId>io.nosqlbench</groupId>
|
2021-04-21 12:09:28 -05:00
|
|
|
<version>4.15.41-SNAPSHOT</version>
|
2020-02-24 10:20:00 -06:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
2020-02-20 15:37:57 -06:00
|
|
|
</parent>
|
|
|
|
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>engine-extensions</artifactId>
|
2020-02-20 15:37:57 -06:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>Scripting extensions for nosqlbench.</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>engine-api</artifactId>
|
2021-04-21 12:09:28 -05:00
|
|
|
<version>4.15.41-SNAPSHOT</version>
|
2020-02-20 15:37:57 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.md</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
2020-03-09 16:40:48 -05:00
|
|
|
<!-- <plugin>-->
|
|
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
|
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
|
|
|
|
<!-- <version>3.1.1</version>-->
|
|
|
|
<!-- <configuration>-->
|
|
|
|
<!-- <doctitle>nosqlbench Extensions</doctitle>-->
|
|
|
|
<!-- <windowtitle>nosqlbench Extensions</windowtitle>-->
|
|
|
|
<!-- </configuration>-->
|
|
|
|
<!-- <executions>-->
|
|
|
|
<!-- <execution>-->
|
|
|
|
<!-- <id>attach-javadoc</id>-->
|
|
|
|
<!-- <goals>-->
|
|
|
|
<!-- <goal>jar</goal>-->
|
|
|
|
<!-- </goals>-->
|
|
|
|
<!-- </execution>-->
|
|
|
|
<!-- </executions>-->
|
|
|
|
<!-- </plugin>-->
|
2020-02-20 15:37:57 -06:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|