pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>maven-generic-conf</artifactId>
  6. <groupId>com.scytl</groupId>
  7. <version>1.3.6</version>
  8. </parent>
  9. <groupId>com.lazerycode.jmeter</groupId>
  10. <artifactId>jmeter-maven-plugin</artifactId>
  11. <version>1.6.2-SNAPSHOT</version>
  12. <packaging>maven-plugin</packaging>
  13. <name>JMeter Maven Plugin</name>
  14. <description>A plugin to allow you to run JMeter tests with Maven.</description>
  15. <url>http://jmeter.lazerycode.com</url>
  16. <licenses>
  17. <license>
  18. <name>Apache 2</name>
  19. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. <distribution>repo</distribution>
  21. <comments>A business-friendly OSS license</comments>
  22. </license>
  23. </licenses>
  24. <developers>
  25. <developer>
  26. <id>Ardesco</id>
  27. <name>Mark Collin</name>
  28. <roles>
  29. <role>Comitter</role>
  30. </roles>
  31. </developer>
  32. <developer>
  33. <id>afranken</id>
  34. <name>Arne Franken</name>
  35. <roles>
  36. <role>Comitter</role>
  37. </roles>
  38. </developer>
  39. <developer>
  40. <id>Ronnie76er</id>
  41. <name>Ron Alleva</name>
  42. <roles>
  43. <role>Comitter</role>
  44. </roles>
  45. </developer>
  46. </developers>
  47. <contributors>
  48. <contributor>
  49. <name>Tom Coupland</name>
  50. </contributor>
  51. <contributor>
  52. <name>Daniel Yokomizo</name>
  53. </contributor>
  54. <contributor>
  55. <name>Gerd Aschemann</name>
  56. </contributor>
  57. <contributor>
  58. <name>Yoann Ciabaud</name>
  59. </contributor>
  60. <contributor>
  61. <name>Tim McCune</name>
  62. </contributor>
  63. <contributor>
  64. <name>Jon Roberts</name>
  65. </contributor>
  66. <contributor>
  67. <name>Jarrod Ribble</name>
  68. </contributor>
  69. <contributor>
  70. <name>Fabrice Daugan</name>
  71. </contributor>
  72. </contributors>
  73. <issueManagement>
  74. <system>GitHub</system>
  75. <url>https://github.com/Ronnie76er/jmeter-maven-plugin/issues</url>
  76. </issueManagement>
  77. <ciManagement>
  78. <system>Teamcity</system>
  79. <url>http://ci.lazerycode.com</url>
  80. </ciManagement>
  81. <mailingLists>
  82. <mailingList>
  83. <name>JMeter Maven Plugin Users</name>
  84. <post>maven-jmeter-plugin-users@googlegroups.com</post>
  85. <archive>https://groups.google.com/forum/?fromgroups#!forum/maven-jmeter-plugin-users</archive>
  86. </mailingList>
  87. <mailingList>
  88. <name>JMeter Maven Plugin Devs</name>
  89. <post>maven-jmeter-plugin-devs@googlegroups.com</post>
  90. <archive>https://groups.google.com/forum/?fromgroups#!forum/maven-jmeter-plugin-devs</archive>
  91. </mailingList>
  92. </mailingLists>
  93. <scm>
  94. <connection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/jmeter-maven-plugin</connection>
  95. <developerConnection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/jmeter-maven-plugin</developerConnection>
  96. <url>https://sauron.scytl.net/websvn/listing.php?repname=maven_generic_conf&amp;path=%2Ftrunk%2Fextlibs%2Fjmeter-maven-plugin%2F</url>
  97. </scm>
  98. <distributionManagement>
  99. <repository>
  100. <id>sonatype-nexus-staging</id>
  101. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  102. </repository>
  103. <snapshotRepository>
  104. <id>sonatype-nexus-snapshots</id>
  105. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  106. </snapshotRepository>
  107. </distributionManagement>
  108. <properties>
  109. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  110. <jmeter.version>2.7</jmeter.version>
  111. </properties>
  112. <dependencies>
  113. <dependency>
  114. <groupId>org.apache.ant</groupId>
  115. <artifactId>ant</artifactId>
  116. <version>1.8.3</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.maven</groupId>
  120. <artifactId>maven-plugin-api</artifactId>
  121. <version>2.2.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>junit</groupId>
  125. <artifactId>junit</artifactId>
  126. <version>4.10</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.maven</groupId>
  131. <artifactId>maven-project</artifactId>
  132. <version>2.2.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.maven.shared</groupId>
  136. <artifactId>maven-plugin-testing-harness</artifactId>
  137. <version>1.1</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <!-- JMeter dependencies -->
  141. <dependency>
  142. <groupId>org.apache.jmeter</groupId>
  143. <artifactId>ApacheJMeter</artifactId>
  144. <version>${jmeter.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.jmeter</groupId>
  148. <artifactId>ApacheJMeter_core</artifactId>
  149. <version>${jmeter.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.jmeter</groupId>
  153. <artifactId>ApacheJMeter_components</artifactId>
  154. <version>${jmeter.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.jmeter</groupId>
  158. <artifactId>ApacheJMeter_functions</artifactId>
  159. <version>${jmeter.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.jmeter</groupId>
  163. <artifactId>ApacheJMeter_http</artifactId>
  164. <version>${jmeter.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.jmeter</groupId>
  168. <artifactId>ApacheJMeter_java</artifactId>
  169. <version>${jmeter.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.jmeter</groupId>
  173. <artifactId>ApacheJMeter_report</artifactId>
  174. <version>${jmeter.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.jmeter</groupId>
  178. <artifactId>ApacheJMeter_tcp</artifactId>
  179. <version>${jmeter.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.jmeter</groupId>
  183. <artifactId>ApacheJMeter_ftp</artifactId>
  184. <version>${jmeter.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.jmeter</groupId>
  188. <artifactId>ApacheJMeter_jdbc</artifactId>
  189. <version>${jmeter.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.jmeter</groupId>
  193. <artifactId>ApacheJMeter_jms</artifactId>
  194. <version>${jmeter.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.jmeter</groupId>
  198. <artifactId>ApacheJMeter_ldap</artifactId>
  199. <version>${jmeter.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.jmeter</groupId>
  203. <artifactId>ApacheJMeter_mail</artifactId>
  204. <version>${jmeter.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.jmeter</groupId>
  208. <artifactId>ApacheJMeter_junit</artifactId>
  209. <version>${jmeter.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.jmeter</groupId>
  213. <artifactId>ApacheJMeter_monitors</artifactId>
  214. <version>${jmeter.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.jmeter</groupId>
  218. <artifactId>ApacheJMeter_config</artifactId>
  219. <version>${jmeter.version}</version>
  220. </dependency>
  221. </dependencies>
  222. <build>
  223. <pluginManagement>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.apache.maven.plugins</groupId>
  227. <artifactId>maven-compiler-plugin</artifactId>
  228. <configuration>
  229. <source>1.6</source>
  230. <target>1.6</target>
  231. </configuration>
  232. </plugin>
  233. <plugin>
  234. <groupId>org.apache.maven.plugins</groupId>
  235. <artifactId>maven-site-plugin</artifactId>
  236. <version>3.0</version>
  237. <configuration>
  238. <locales>en</locales>
  239. <inputEncoding>UTF-8</inputEncoding>
  240. <outputEncoding>UTF-8</outputEncoding>
  241. <reportPlugins>
  242. <reportPlugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-project-info-reports-plugin</artifactId>
  245. <configuration>
  246. <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
  247. <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
  248. </configuration>
  249. <reportSets>
  250. <reportSet>
  251. <reports>
  252. <report>index</report>
  253. <report>summary</report>
  254. <report>dependency-management</report>
  255. <report>issue-tracking</report>
  256. <report>help</report>
  257. <report>modules</report>
  258. <report>dependencies</report>
  259. <report>plugins</report>
  260. <report>cim</report>
  261. <report>license</report>
  262. <report>mailing-list</report>
  263. <report>project-team</report>
  264. <report>scm</report>
  265. <report>dependencies</report>
  266. <report>distribution-management</report>
  267. </reports>
  268. </reportSet>
  269. </reportSets>
  270. </reportPlugin>
  271. </reportPlugins>
  272. </configuration>
  273. </plugin>
  274. </plugins>
  275. </pluginManagement>
  276. </build>
  277. <profiles>
  278. <profile>
  279. <id>release</id>
  280. <build>
  281. <pluginManagement>
  282. <plugins>
  283. <!-- <plugin>
  284. <groupId>org.apache.maven.plugins</groupId>
  285. <artifactId>maven-gpg-plugin</artifactId>
  286. <executions>
  287. <execution>
  288. <id>sign-artifacts</id>
  289. <phase>verify</phase>
  290. <goals>
  291. <goal>sign</goal>
  292. </goals>
  293. </execution>
  294. </executions>
  295. </plugin> -->
  296. <plugin>
  297. <groupId>org.apache.maven.plugins</groupId>
  298. <artifactId>maven-javadoc-plugin</artifactId>
  299. <executions>
  300. <execution>
  301. <id>attach-javadocs</id>
  302. <goals>
  303. <goal>jar</goal>
  304. </goals>
  305. </execution>
  306. </executions>
  307. </plugin>
  308. <plugin>
  309. <groupId>org.apache.maven.plugins</groupId>
  310. <artifactId>maven-source-plugin</artifactId>
  311. <version>2.1.2</version>
  312. <executions>
  313. <execution>
  314. <id>attach-sources</id>
  315. <goals>
  316. <goal>jar-no-fork</goal>
  317. </goals>
  318. </execution>
  319. </executions>
  320. </plugin>
  321. <plugin>
  322. <groupId>org.apache.maven.plugins</groupId>
  323. <artifactId>maven-release-plugin</artifactId>
  324. <version>2.3.1</version>
  325. </plugin>
  326. </plugins>
  327. </pluginManagement>
  328. </build>
  329. </profile>
  330. </profiles>
  331. </project>