jmeter-plugins-threadgroup-autostop
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.metersphere</groupId> <artifactId>jmeter-plugins-threadgroup-autostop</artifactId> <version>1.0.0</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>io.metersphere</groupId> <artifactId>jmeter-plugins-threadgroup-autostop</artifactId> <version>1.0.0</version> <name>Autostop plugin</name> <description>Autostop plugin</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <url>http://jmeter-plugins.org/</url> <scm> <url>https://github.com/undera/jmeter-plugins</url> <connection>https://github.com/undera/jmeter-plugins.git</connection> <developerConnection>git@github.com:undera/jmeter-plugins.git</developerConnection> </scm> <developers> <developer> <id>team</id> <name>jmeter-plugins.org</name> <email>jmeter-plugins@googlegroups.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-cmn-jmeter</artifactId> <version>0.6</version> <exclusions> <exclusion> <artifactId>ApacheJMeter_core</artifactId> <groupId>org.apache.jmeter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_core</artifactId> <version>5.4.1</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib --> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-casutg</artifactId> <version>2.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-emulators</artifactId> <version>0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <!-- 寻找 setting.xml 里配置的密码¬--> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>oss</id> <name>OSS sonatype Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>