pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <groupId>org.javalite</groupId>
  5. <artifactId>activeweb-benchmark</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.1-SNAPSHOT</version>
  8. <name>ActiveWeb Benchmark App</name>
  9. <properties>
  10. <activeweb.version>1.9</activeweb.version>
  11. </properties>
  12. <build>
  13. <finalName>activeweb</finalName>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-surefire-plugin</artifactId>
  18. <version>2.14.1</version>
  19. <configuration>
  20. <reportFormat>brief</reportFormat>
  21. <trimStackTrace>true</trimStackTrace>
  22. <useFile>false</useFile>
  23. <includes>
  24. <include>**/*Spec*.java</include>
  25. <include>**/*Test*.java</include>
  26. </includes>
  27. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.1</version>
  33. <configuration>
  34. <source>1.7</source>
  35. <target>1.7</target>
  36. </configuration>
  37. </plugin>
  38. <plugin>
  39. <groupId>org.mortbay.jetty</groupId>
  40. <artifactId>maven-jetty-plugin</artifactId>
  41. <version>6.1.22</version>
  42. <configuration>
  43. <scanIntervalSeconds>0</scanIntervalSeconds>
  44. <connectors>
  45. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  46. <port>8080</port>
  47. <maxIdleTime>1000</maxIdleTime>
  48. </connector>
  49. </connectors>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.javalite</groupId>
  54. <artifactId>activejdbc-instrumentation</artifactId>
  55. <version>1.4.9</version>
  56. <executions>
  57. <execution>
  58. <phase>process-classes</phase>
  59. <goals>
  60. <goal>instrument</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. <dependencies>
  68. <dependency>
  69. <groupId>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. <version>4.8.1</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.javalite</groupId>
  76. <artifactId>activeweb</artifactId>
  77. <version>${activeweb.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.javalite</groupId>
  81. <artifactId>activeweb-testing</artifactId>
  82. <version>${activeweb.version}</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <version>5.1.25</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>slf4j-simple</artifactId>
  93. <version>1.7.5</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.fasterxml.jackson.core</groupId>
  97. <artifactId>jackson-core</artifactId>
  98. <version>2.3.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.fasterxml.jackson.core</groupId>
  102. <artifactId>jackson-databind</artifactId>
  103. <version>2.3.1</version>
  104. </dependency>
  105. </dependencies>
  106. </project>