pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0"?>
  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. <groupId>com.scytl</groupId>
  6. <artifactId>maven-generic-conf</artifactId>
  7. <version>1.5.0</version>
  8. </parent>
  9. <groupId>com.scytl.jmeter</groupId>
  10. <artifactId>maven-jmeter-plugin</artifactId>
  11. <packaging>maven-plugin</packaging>
  12. <version>1.11-SNAPSHOT</version>
  13. <name>Maven JMeter Plugin</name>
  14. <url>http://jakarta.apache.org/jmeter</url>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>2.0.2</version>
  21. <configuration>
  22. <source>1.5</source>
  23. <target>1.5</target>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. <scm>
  29. <connection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/maven-jmeter-plugin</connection>
  30. <developerConnection>scm:svn:http://sauron.scytl.net/svn/maven_generic_conf/trunk/extlibs/maven-jmeter-plugin</developerConnection>
  31. <url>https://sauron.scytl.net/websvn/listing.php?repname=maven_generic_conf&amp;path=%2Ftrunk%2Fextlibs%2Fmaven-jmeter-plugin%2F</url>
  32. </scm>
  33. <dependencies>
  34. <dependency>
  35. <groupId>ant</groupId>
  36. <artifactId>ant</artifactId>
  37. <version>1.6</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.maven</groupId>
  41. <artifactId>maven-plugin-api</artifactId>
  42. <version>2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. <version>3.8.1</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>log4j</groupId>
  52. <artifactId>log4j</artifactId>
  53. <version>1.2.8</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.jmeter</groupId>
  57. <artifactId>ApacheJMeter_core</artifactId>
  58. <version>2.7</version>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.maven</groupId>
  63. <artifactId>maven-artifact</artifactId>
  64. <version>2.0.9</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.maven</groupId>
  68. <artifactId>maven-model</artifactId>
  69. <version>2.0.9</version>
  70. </dependency>
  71. </dependencies>
  72. </project>