pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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.7.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.6.6.0</version>
  35. </parent>
  36. <properties>
  37. <java.version>1.8</java.version>
  38. <HikariCP.version>2.7.3</HikariCP.version>
  39. <mysql.version>5.1.44</mysql.version>
  40. <postgres-jdbc.version>42.1.4</postgres-jdbc.version>
  41. <morphia.version>1.3.2</morphia.version>
  42. <ebean.version>11.9.1</ebean.version>
  43. <act-sql-common.version>1.3.0-teb-SNAPSHOT</act-sql-common.version>
  44. <act-hibernate.version>1.0.0-teb-SNAPSHOT</act-hibernate.version>
  45. <act-eclipselink.version>1.0.0-teb-SNAPSHOT</act-eclipselink.version>
  46. <act-ebean.version>1.4.0-teb-SNAPSHOT</act-ebean.version>
  47. <act-morphia.version>1.4.0-teb-SNAPSHOT</act-morphia.version>
  48. <act-mustache.version>1.3.0</act-mustache.version>
  49. <act.version>1.7.0-teb-SNAPSHOT</act.version>
  50. <app.entry>com.techempower.act.AppEntry</app.entry>
  51. </properties>
  52. <build>
  53. <finalName>${project.artifactId}-${project.version}-r${buildNumber}</finalName>
  54. </build>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.actframework</groupId>
  58. <artifactId>act</artifactId>
  59. <version>${act.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.actframework</groupId>
  63. <artifactId>act-mustache</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.actframework</groupId>
  67. <artifactId>act-sql-common</artifactId>
  68. <version>${act-sql-common.version}</version>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.avaje.ebean</groupId>
  72. <artifactId>ebean</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>org.avaje.ebean</groupId>
  76. <artifactId>ebean-agent</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.ebean</groupId>
  82. <artifactId>ebean-annotation</artifactId>
  83. <version>3.4</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mongodb.morphia</groupId>
  87. <artifactId>morphia</artifactId>
  88. <version>${morphia.version}</version>
  89. </dependency>
  90. <!-- The javax.xml.bind classes are required by this application, and they
  91. are included by default in Java 8 but not in Java 9. We could include
  92. them in Java 9 by adding "add-modules java.xml.bind" to the command
  93. line arguments, but those arguments are not supported in Java 8 (and it
  94. fails on unsupported arguments rather than ignoring them). -->
  95. <dependency>
  96. <groupId>javax.xml.bind</groupId>
  97. <artifactId>jaxb-api</artifactId>
  98. <!-- Version 2.2.12 is compatible with both Java 8 and Java 9, while
  99. version 2.3.0 is not compatible with Java 8. -->
  100. <version>2.2.12</version>
  101. </dependency>
  102. </dependencies>
  103. <profiles>
  104. <profile>
  105. <id>mongo</id>
  106. <build>
  107. <finalName>teb-act-mongo</finalName>
  108. </build>
  109. <dependencies>
  110. <dependency>
  111. <groupId>org.actframework</groupId>
  112. <artifactId>act-morphia</artifactId>
  113. <version>${act-morphia.version}</version>
  114. </dependency>
  115. </dependencies>
  116. </profile>
  117. <profile>
  118. <id>ebean_mysql</id>
  119. <build>
  120. <finalName>teb-act-ebean-mysql</finalName>
  121. </build>
  122. <dependencies>
  123. <dependency>
  124. <groupId>org.actframework</groupId>
  125. <artifactId>act-ebean2</artifactId>
  126. <version>${act-ebean.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.ebean</groupId>
  130. <artifactId>ebean</artifactId>
  131. <version>${ebean.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>mysql</groupId>
  135. <artifactId>mysql-connector-java</artifactId>
  136. <version>${mysql.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.zaxxer</groupId>
  140. <artifactId>HikariCP</artifactId>
  141. <version>${HikariCP.version}</version>
  142. </dependency>
  143. </dependencies>
  144. </profile>
  145. <profile>
  146. <id>hibernate_mysql</id>
  147. <build>
  148. <finalName>teb-act-hibernate-mysql</finalName>
  149. </build>
  150. <dependencies>
  151. <dependency>
  152. <groupId>org.actframework</groupId>
  153. <artifactId>act-hibernate</artifactId>
  154. <version>${act-hibernate.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>mysql</groupId>
  158. <artifactId>mysql-connector-java</artifactId>
  159. <version>${mysql.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.zaxxer</groupId>
  163. <artifactId>HikariCP</artifactId>
  164. <version>${HikariCP.version}</version>
  165. </dependency>
  166. </dependencies>
  167. </profile>
  168. <profile>
  169. <id>eclipselink_mysql</id>
  170. <build>
  171. <finalName>teb-act-eclipselink-mysql</finalName>
  172. </build>
  173. <dependencies>
  174. <dependency>
  175. <groupId>org.actframework</groupId>
  176. <artifactId>act-eclipselink</artifactId>
  177. <version>${act-eclipselink.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>mysql</groupId>
  181. <artifactId>mysql-connector-java</artifactId>
  182. <version>${mysql.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.zaxxer</groupId>
  186. <artifactId>HikariCP</artifactId>
  187. <version>${HikariCP.version}</version>
  188. </dependency>
  189. </dependencies>
  190. </profile>
  191. <profile>
  192. <id>ebean_pgsql</id>
  193. <build>
  194. <finalName>teb-act-ebean-pgsql</finalName>
  195. </build>
  196. <dependencies>
  197. <dependency>
  198. <groupId>org.actframework</groupId>
  199. <artifactId>act-ebean2</artifactId>
  200. <version>${act-ebean.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>io.ebean</groupId>
  204. <artifactId>ebean</artifactId>
  205. <version>${ebean.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.postgresql</groupId>
  209. <artifactId>postgresql</artifactId>
  210. <version>${postgres-jdbc.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>com.zaxxer</groupId>
  214. <artifactId>HikariCP</artifactId>
  215. <version>${HikariCP.version}</version>
  216. </dependency>
  217. </dependencies>
  218. </profile>
  219. <profile>
  220. <id>hibernate_pgsql</id>
  221. <build>
  222. <finalName>teb-act-hibernate-pgsql</finalName>
  223. </build>
  224. <dependencies>
  225. <dependency>
  226. <groupId>org.actframework</groupId>
  227. <artifactId>act-hibernate</artifactId>
  228. <version>${act-hibernate.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.postgresql</groupId>
  232. <artifactId>postgresql</artifactId>
  233. <version>${postgres-jdbc.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.zaxxer</groupId>
  237. <artifactId>HikariCP</artifactId>
  238. <version>${HikariCP.version}</version>
  239. </dependency>
  240. </dependencies>
  241. </profile>
  242. <profile>
  243. <id>eclipselink_pgsql</id>
  244. <build>
  245. <finalName>teb-act-eclipselink-pgsql</finalName>
  246. </build>
  247. <dependencies>
  248. <dependency>
  249. <groupId>org.actframework</groupId>
  250. <artifactId>act-eclipselink</artifactId>
  251. <version>${act-eclipselink.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.postgresql</groupId>
  255. <artifactId>postgresql</artifactId>
  256. <version>${postgres-jdbc.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.zaxxer</groupId>
  260. <artifactId>HikariCP</artifactId>
  261. <version>${HikariCP.version}</version>
  262. </dependency>
  263. </dependencies>
  264. </profile>
  265. </profiles>
  266. </project>