123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <?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>
- <parent>
- <artifactId>maven-generic-conf</artifactId>
- <groupId>com.scytl</groupId>
- <version>1.3.6</version>
- </parent>
- <groupId>com.lazerycode.jmeter</groupId>
- <artifactId>jmeter-maven-plugin</artifactId>
- <version>1.6.2-SNAPSHOT</version>
- <packaging>maven-plugin</packaging>
- <name>JMeter Maven Plugin</name>
- <description>A plugin to allow you to run JMeter tests with Maven.</description>
- <url>http://jmeter.lazerycode.com</url>
- <licenses>
- <license>
- <name>Apache 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- <comments>A business-friendly OSS license</comments>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>Ardesco</id>
- <name>Mark Collin</name>
- <roles>
- <role>Comitter</role>
- </roles>
- </developer>
- <developer>
- <id>afranken</id>
- <name>Arne Franken</name>
- <roles>
- <role>Comitter</role>
- </roles>
- </developer>
- <developer>
- <id>Ronnie76er</id>
- <name>Ron Alleva</name>
- <roles>
- <role>Comitter</role>
- </roles>
- </developer>
- </developers>
- <contributors>
- <contributor>
- <name>Tom Coupland</name>
- </contributor>
- <contributor>
- <name>Daniel Yokomizo</name>
- </contributor>
- <contributor>
- <name>Gerd Aschemann</name>
- </contributor>
- <contributor>
- <name>Yoann Ciabaud</name>
- </contributor>
- <contributor>
- <name>Tim McCune</name>
- </contributor>
- <contributor>
- <name>Jon Roberts</name>
- </contributor>
- <contributor>
- <name>Jarrod Ribble</name>
- </contributor>
- <contributor>
- <name>Fabrice Daugan</name>
- </contributor>
- </contributors>
- <issueManagement>
- <system>GitHub</system>
- <url>https://github.com/Ronnie76er/jmeter-maven-plugin/issues</url>
- </issueManagement>
- <ciManagement>
- <system>Teamcity</system>
- <url>http://ci.lazerycode.com</url>
- </ciManagement>
- <mailingLists>
- <mailingList>
- <name>JMeter Maven Plugin Users</name>
- <post>maven-jmeter-plugin-users@googlegroups.com</post>
- <archive>https://groups.google.com/forum/?fromgroups#!forum/maven-jmeter-plugin-users</archive>
- </mailingList>
- <mailingList>
- <name>JMeter Maven Plugin Devs</name>
- <post>maven-jmeter-plugin-devs@googlegroups.com</post>
- <archive>https://groups.google.com/forum/?fromgroups#!forum/maven-jmeter-plugin-devs</archive>
- </mailingList>
- </mailingLists>
- <scm>
- <connection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/jmeter-maven-plugin</connection>
- <developerConnection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/jmeter-maven-plugin</developerConnection>
- <url>https://sauron.scytl.net/websvn/listing.php?repname=maven_generic_conf&path=%2Ftrunk%2Fextlibs%2Fjmeter-maven-plugin%2F</url>
- </scm>
- <distributionManagement>
- <repository>
- <id>sonatype-nexus-staging</id>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- <snapshotRepository>
- <id>sonatype-nexus-snapshots</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <jmeter.version>2.7</jmeter.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.8.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-plugin-api</artifactId>
- <version>2.2.1</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.10</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-project</artifactId>
- <version>2.2.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.maven.shared</groupId>
- <artifactId>maven-plugin-testing-harness</artifactId>
- <version>1.1</version>
- <scope>test</scope>
- </dependency>
- <!-- JMeter dependencies -->
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_core</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_components</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_functions</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_http</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_java</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_report</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_tcp</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_ftp</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_jdbc</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_jms</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_ldap</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_mail</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_junit</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_monitors</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jmeter</groupId>
- <artifactId>ApacheJMeter_config</artifactId>
- <version>${jmeter.version}</version>
- </dependency>
- </dependencies>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <locales>en</locales>
- <inputEncoding>UTF-8</inputEncoding>
- <outputEncoding>UTF-8</outputEncoding>
- <reportPlugins>
- <reportPlugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <configuration>
- <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
- <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
- </configuration>
- <reportSets>
- <reportSet>
- <reports>
- <report>index</report>
- <report>summary</report>
- <report>dependency-management</report>
- <report>issue-tracking</report>
- <report>help</report>
- <report>modules</report>
- <report>dependencies</report>
- <report>plugins</report>
- <report>cim</report>
- <report>license</report>
- <report>mailing-list</report>
- <report>project-team</report>
- <report>scm</report>
- <report>dependencies</report>
- <report>distribution-management</report>
- </reports>
- </reportSet>
- </reportSets>
- </reportPlugin>
- </reportPlugins>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <profiles>
- <profile>
- <id>release</id>
- <build>
- <pluginManagement>
- <plugins>
- <!-- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</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-source-plugin</artifactId>
- <version>2.1.2</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.3.1</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </profile>
- </profiles>
- </project>
|