pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2016 The TEB Project for ACT Framework
  4. ~
  5. ~ The ACT framework Project licenses this file to you under the Apache License,
  6. ~ version 2.0 (the "License"); you may not use this file except in compliance
  7. ~ with the License. You may obtain a copy of the License at:
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. ~ License for the specific language governing permissions and limitations
  15. ~ under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>com.techempower</groupId>
  21. <artifactId>actframework</artifactId>
  22. <packaging>jar</packaging>
  23. <version>1.9.0</version>
  24. <name>TEB ActFramework Project</name>
  25. <description>TEB benchmark project with ActFramework</description>
  26. <inceptionYear>2016</inceptionYear>
  27. <organization>
  28. <name>ActFramework</name>
  29. <url>http://actframework.org</url>
  30. </organization>
  31. <parent>
  32. <groupId>org.actframework</groupId>
  33. <artifactId>act-starter-parent</artifactId>
  34. <version>1.9.0.1</version>
  35. </parent>
  36. <repositories>
  37. <repository>
  38. <id>sonatype-nexus-snapshots</id>
  39. <name>Sonatype Nexus Snapshots</name>
  40. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  41. <releases>
  42. <enabled>false</enabled>
  43. </releases>
  44. <snapshots>
  45. <enabled>true</enabled>
  46. </snapshots>
  47. </repository>
  48. </repositories>
  49. <pluginRepositories>
  50. <pluginRepository>
  51. <id>sonatype-nexus-snapshots</id>
  52. <name>Sonatype Nexus Snapshots</name>
  53. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  54. <releases>
  55. <enabled>false</enabled>
  56. </releases>
  57. <snapshots>
  58. <enabled>true</enabled>
  59. </snapshots>
  60. </pluginRepository>
  61. </pluginRepositories>
  62. <properties>
  63. <java.version>1.8</java.version>
  64. <mysql.version>8.0.28</mysql.version>
  65. <postgres-jdbc.version>42.4.1</postgres-jdbc.version>
  66. <morphia.version>1.3.2</morphia.version>
  67. <ebean-annotation.version>3.4</ebean-annotation.version>
  68. <app.entry>com.techempower.act.AppEntry</app.entry>
  69. </properties>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.actframework</groupId>
  73. <artifactId>act-mustache</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.ebean</groupId>
  77. <artifactId>ebean-annotation</artifactId>
  78. <version>${ebean-annotation.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mongodb.morphia</groupId>
  82. <artifactId>morphia</artifactId>
  83. <version>${morphia.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.actframework</groupId>
  87. <artifactId>act-sql-common</artifactId>
  88. <version>1.6.0</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>org.avaje.ebean</groupId>
  92. <artifactId>ebean</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>org.avaje.ebean</groupId>
  96. <artifactId>ebean-agent</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. </dependencies>
  101. <profiles>
  102. <profile>
  103. <id>mongo</id>
  104. <build>
  105. <finalName>teb-act-mongo</finalName>
  106. </build>
  107. <dependencies>
  108. <dependency>
  109. <groupId>org.actframework</groupId>
  110. <artifactId>act-morphia</artifactId>
  111. </dependency>
  112. </dependencies>
  113. </profile>
  114. <profile>
  115. <id>ebean_mysql</id>
  116. <build>
  117. <finalName>teb-act-ebean-mysql</finalName>
  118. </build>
  119. <dependencies>
  120. <dependency>
  121. <groupId>org.actframework</groupId>
  122. <artifactId>act-ebean</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>mysql</groupId>
  126. <artifactId>mysql-connector-java</artifactId>
  127. <version>${mysql.version}</version>
  128. </dependency>
  129. </dependencies>
  130. </profile>
  131. <profile>
  132. <id>ebean_pgsql</id>
  133. <build>
  134. <finalName>teb-act-ebean-pgsql</finalName>
  135. </build>
  136. <dependencies>
  137. <dependency>
  138. <groupId>org.actframework</groupId>
  139. <artifactId>act-ebean</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.postgresql</groupId>
  143. <artifactId>postgresql</artifactId>
  144. <version>${postgres-jdbc.version}</version>
  145. </dependency>
  146. </dependencies>
  147. </profile>
  148. <profile>
  149. <id>hibernate_mysql</id>
  150. <build>
  151. <finalName>teb-act-hibernate-mysql</finalName>
  152. </build>
  153. <dependencies>
  154. <dependency>
  155. <groupId>org.actframework</groupId>
  156. <artifactId>act-hibernate</artifactId>
  157. </dependency>
  158. <dependency>
  159. <groupId>mysql</groupId>
  160. <artifactId>mysql-connector-java</artifactId>
  161. <version>${mysql.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.zaxxer</groupId>
  165. <artifactId>HikariCP</artifactId>
  166. </dependency>
  167. </dependencies>
  168. </profile>
  169. <profile>
  170. <id>hibernate_pgsql</id>
  171. <build>
  172. <finalName>teb-act-hibernate-pgsql</finalName>
  173. </build>
  174. <dependencies>
  175. <dependency>
  176. <groupId>org.actframework</groupId>
  177. <artifactId>act-hibernate</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.postgresql</groupId>
  181. <artifactId>postgresql</artifactId>
  182. <version>${postgres-jdbc.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.zaxxer</groupId>
  186. <artifactId>HikariCP</artifactId>
  187. </dependency>
  188. </dependencies>
  189. </profile>
  190. <profile>
  191. <id>eclipselink_pgsql</id>
  192. <build>
  193. <finalName>teb-act-eclipselink-pgsql</finalName>
  194. </build>
  195. <dependencies>
  196. <dependency>
  197. <groupId>org.actframework</groupId>
  198. <artifactId>act-eclipselink</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.postgresql</groupId>
  202. <artifactId>postgresql</artifactId>
  203. <version>${postgres-jdbc.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.zaxxer</groupId>
  207. <artifactId>HikariCP</artifactId>
  208. </dependency>
  209. </dependencies>
  210. </profile>
  211. <profile>
  212. <id>eclipselink_mysql</id>
  213. <build>
  214. <finalName>teb-act-eclipselink-mysql</finalName>
  215. </build>
  216. <dependencies>
  217. <dependency>
  218. <groupId>org.actframework</groupId>
  219. <artifactId>act-eclipselink</artifactId>
  220. </dependency>
  221. <dependency>
  222. <groupId>mysql</groupId>
  223. <artifactId>mysql-connector-java</artifactId>
  224. <version>${mysql.version}</version>
  225. </dependency>
  226. </dependencies>
  227. </profile>
  228. </profiles>
  229. </project>