You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.1 KiB
106 lines
4.1 KiB
<?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/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>powerjob-remote</artifactId>
|
|
<groupId>tech.powerjob</groupId>
|
|
<version>4.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>powerjob-remote-benchmark</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
|
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
|
|
|
|
<logback.version>1.2.9</logback.version>
|
|
<springboot.version>2.7.4</springboot.version>
|
|
<powerjob-remote-impl-http.version>4.3.0</powerjob-remote-impl-http.version>
|
|
<powerjob-remote-impl-akka.version>4.3.0</powerjob-remote-impl-akka.version>
|
|
|
|
<gatling.version>3.9.0</gatling.version>
|
|
<gatling-maven-plugin.version>4.2.9</gatling-maven-plugin.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 性能测试相关 -->
|
|
<dependency>
|
|
<groupId>io.gatling.highcharts</groupId>
|
|
<artifactId>gatling-charts-highcharts</artifactId>
|
|
<version>${gatling.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-remote-impl-http</artifactId>
|
|
<version>${powerjob-remote-impl-http.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-remote-impl-akka</artifactId>
|
|
<version>${powerjob-remote-impl-akka.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<configuration>
|
|
<mainClass>tech.powerjob.remote.benchmark.BenchmarkApplication</mainClass>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.gatling</groupId>
|
|
<artifactId>gatling-maven-plugin</artifactId>
|
|
<version>${gatling-maven-plugin.version}</version>
|
|
<configuration>
|
|
<!-- Enterprise Cloud (https://cloud.gatling.io/) configuration reference: https://gatling.io/docs/gatling/reference/current/extensions/maven_plugin/#working-with-gatling-enterprise-cloud -->
|
|
<!-- Enterprise Self-Hosted configuration reference: https://gatling.io/docs/gatling/reference/current/extensions/maven_plugin/#working-with-gatling-enterprise-self-hosted -->
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|