pom.xml 5.5 KB

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