pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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.11</activeweb.version>
  11. <activejdbc.version>1.4.10</activejdbc.version>
  12. </properties>
  13. <build>
  14. <finalName>activeweb</finalName>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-surefire-plugin</artifactId>
  19. <version>2.18.1</version>
  20. <configuration>
  21. <reportFormat>brief</reportFormat>
  22. <trimStackTrace>true</trimStackTrace>
  23. <useFile>false</useFile>
  24. <includes>
  25. <include>**/*Spec*.java</include>
  26. <include>**/*Test*.java</include>
  27. </includes>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <version>3.1</version>
  34. <configuration>
  35. <source>1.7</source>
  36. <target>1.7</target>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.mortbay.jetty</groupId>
  41. <artifactId>maven-jetty-plugin</artifactId>
  42. <version>6.1.22</version>
  43. <configuration>
  44. <scanIntervalSeconds>0</scanIntervalSeconds>
  45. <connectors>
  46. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  47. <port>8080</port>
  48. <maxIdleTime>1000</maxIdleTime>
  49. </connector>
  50. </connectors>
  51. <!--<systemProperties>-->
  52. <!--<systemProperty>-->
  53. <!--<name>active_reload</name>-->
  54. <!--<value>true</value>-->
  55. <!--</systemProperty>-->
  56. <!--</systemProperties>-->
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.javalite</groupId>
  61. <artifactId>activejdbc-instrumentation</artifactId>
  62. <version>${activejdbc.version}</version>
  63. <executions>
  64. <execution>
  65. <phase>process-classes</phase>
  66. <goals>
  67. <goal>instrument</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. <dependencies>
  75. <dependency>
  76. <groupId>junit</groupId>
  77. <artifactId>junit</artifactId>
  78. <version>4.12</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.javalite</groupId>
  83. <artifactId>activeweb</artifactId>
  84. <version>${activeweb.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.javalite</groupId>
  88. <artifactId>activejdbc</artifactId>
  89. <version>${activejdbc.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.javalite</groupId>
  93. <artifactId>activeweb-testing</artifactId>
  94. <version>${activeweb.version}</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. <version>5.1.47</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.slf4j</groupId>
  104. <artifactId>slf4j-simple</artifactId>
  105. <version>1.7.25</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-core</artifactId>
  110. <version>2.9.7</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. <version>2.9.7</version>
  116. </dependency>
  117. </dependencies>
  118. <repositories>
  119. <repository>
  120. <id>javaLite-snapshots</id>
  121. <name>JavaLite Snapshots</name>
  122. <url>http://repo.javalite.io/</url>
  123. <releases>
  124. <enabled>false</enabled>
  125. </releases>
  126. <snapshots>
  127. <enabled>true</enabled>
  128. </snapshots>
  129. </repository>
  130. </repositories>
  131. <pluginRepositories>
  132. <pluginRepository>
  133. <id>javaLite-plugin-snapshots</id>
  134. <name>JavaLite Plugin Snapshots</name>
  135. <url>http://repo.javalite.io/</url>
  136. <releases>
  137. <enabled>false</enabled>
  138. </releases>
  139. <snapshots>
  140. <enabled>true</enabled>
  141. </snapshots>
  142. </pluginRepository>
  143. </pluginRepositories>
  144. </project>