Skip to content

Commit

Permalink
update version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BingTong0 committed Oct 24, 2024
1 parent 2e39114 commit 3665538
Show file tree
Hide file tree
Showing 6 changed files with 184 additions and 0 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
778d0b567e1030a2e7fa31897e5078e5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
914a4acb4d22872d30037058b40312f55c2e618f
180 changes: 180 additions & 0 deletions org/ldbcouncil/finbench/driver/0.2.0-alpha/driver-0.2.0-alpha.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.ldbcouncil.finbench</groupId>
<artifactId>driver</artifactId>
<name>LDBC FinBench Driver</name>
<version>0.2.0-alpha</version>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/ldbc_finbench_mvn</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.29</version>
</dependency>
</dependencies>
<configuration>
<configLocation>${project.basedir}/checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<failOnViolation>true</failOnViolation>
<linkXRef>false</linkXRef>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<maxAllowedViolations>0</maxAllowedViolations>
<violationSeverity>warning</violationSeverity>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M6</version>
<configuration>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<printSummary>true</printSummary>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.DSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>opentest4j</artifactId>
<groupId>org.opentest4j</groupId>
</exclusion>
<exclusion>
<artifactId>junit-platform-commons</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.9.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.6.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>4.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<agrona-version>1.16.0</agrona-version>
<jackson.api.version>2.13.5</jackson.api.version>
<duckdb.version>0.5.1</duckdb.version>
<junit.version>5.9.0</junit.version>
<hdrhistogram.version>1.2.1</hdrhistogram.version>
<hamcrest.version>2.2</hamcrest.version>
<guava.version>24.1.1-jre</guava.version>
<disruptor-version>3.3.2</disruptor-version>
<log4j.version>2.19.0</log4j.version>
<org.javatuples.version>1.2</org.javatuples.version>
<commmons.cli.version>1.5.0</commmons.cli.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mockito.version>4.6.0</mockito.version>
<commons.io.version>2.7</commons.io.version>
<stormpot.version>2.4</stormpot.version>
<common.math.version>3.2</common.math.version>
</properties>
</project>

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9f5338d3ab005732b9efe1944e239c4a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0e0bc589ee863bda1fe1af3b9f98721922d3d226

0 comments on commit 3665538

Please sign in to comment.