This is an automated email from the ASF dual-hosted git repository. zhaoyanan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-shardingsphere-benchmark.git
commit a14c30f2869e51ff2dc98309c0a0c0d4fe647203 Author: nancyzrh <[email protected]> AuthorDate: Wed Sep 25 15:42:20 2019 +0800 add jmeter project --- shardingsphere-benchmark/pom.xml | 112 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) diff --git a/shardingsphere-benchmark/pom.xml b/shardingsphere-benchmark/pom.xml new file mode 100644 index 0000000..b534607 --- /dev/null +++ b/shardingsphere-benchmark/pom.xml @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<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> + + <groupId>shardingsphere-benchmark</groupId> + <artifactId>shardingsphere-benchmark</artifactId> + <version>1.0-SNAPSHOT</version> + + <dependencies> + <dependency> + <groupId>org.apache.shardingsphere</groupId> + <artifactId>sharding-core-api</artifactId> + <version>[4.0.0-RC2-SNAPSHOT,)</version> + </dependency> + <dependency> + <groupId>org.apache.shardingsphere</groupId> + <artifactId>sharding-jdbc-core</artifactId> + <version>[4.0.0-RC3-SNAPSHOT,)</version> + </dependency> + <dependency> + <groupId>io.shardingsphere</groupId> + <artifactId>sharding-core</artifactId> + <version>3.1.0</version> + </dependency> + <dependency> + <groupId>io.shardingsphere</groupId> + <artifactId>sharding-jdbc-core</artifactId> + <version>3.1.0</version> + </dependency> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>5.1.47</version> + </dependency> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>42.2.5</version> + </dependency> + <dependency> + <groupId>com.zaxxer</groupId> + <artifactId>HikariCP</artifactId> + <version>3.2.0</version> + </dependency> + <dependency> + <groupId>org.apache.jmeter</groupId> + <artifactId>ApacheJMeter_core</artifactId> + <version>4.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.jmeter</groupId> + <artifactId>ApacheJMeter_java</artifactId> + <version>4.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>1.16.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.7</source> + <target>1.7</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + </configuration> + <executions> + <execution> + <id>assemble-all</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project>
