The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

284 lines
11 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2019 jonathan cobb
  4. For personal or non-commercial use, this code is available under the GNU Affero General Public License, version 3:
  5. https://www.gnu.org/licenses/agpl-3.0.html
  6. For commercial use, please contact jonathan@kyuss.org
  7. -->
  8. <project xmlns="http://maven.apache.org/POM/4.0.0"
  9. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  10. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  11. <modelVersion>4.0.0</modelVersion>
  12. <parent>
  13. <groupId>bubble</groupId>
  14. <artifactId>bubble</artifactId>
  15. <version>1.0.0-SNAPSHOT</version>
  16. </parent>
  17. <artifactId>bubble-server</artifactId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. <repositories>
  20. <repository>
  21. <id>jitpack.io</id>
  22. <url>https://jitpack.io</url>
  23. </repository>
  24. </repositories>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.cobbzilla</groupId>
  28. <artifactId>wizard-server</artifactId>
  29. <version>1.0.0-SNAPSHOT</version>
  30. <exclusions>
  31. <!-- need to bump version to latest, then refactor AbstractElasticSearchDAO -->
  32. <exclusion>
  33. <groupId>org.elasticsearch</groupId>
  34. <artifactId>elasticsearch</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.cobbzilla</groupId>
  40. <artifactId>wizard-client</artifactId>
  41. <version>1.0.0-SNAPSHOT</version>
  42. </dependency>
  43. <!-- RDBMS persistence -->
  44. <dependency>
  45. <groupId>org.hibernate</groupId>
  46. <artifactId>hibernate-core</artifactId>
  47. <version>${hibernate.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.javassist</groupId>
  51. <artifactId>javassist</artifactId>
  52. <version>${javassist.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>cglib</groupId>
  56. <artifactId>cglib</artifactId>
  57. <version>${cglib.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>${jdbcDriver.postgres.groupId}</groupId>
  61. <artifactId>${jdbcDriver.postgres.artifactId}</artifactId>
  62. <version>${jdbcDriver.postgres.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.cobbzilla</groupId>
  66. <artifactId>templated-mail-sender</artifactId>
  67. <version>1.0.0-SNAPSHOT</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.glassfish.grizzly</groupId>
  71. <artifactId>grizzly-http</artifactId>
  72. <version>${grizzly.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.glassfish.grizzly</groupId>
  76. <artifactId>grizzly-http-server</artifactId>
  77. <version>${grizzly.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.glassfish.grizzly</groupId>
  81. <artifactId>grizzly-http-servlet</artifactId>
  82. <version>${grizzly.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.glassfish.grizzly</groupId>
  86. <artifactId>grizzly-framework-monitoring</artifactId>
  87. <version>${grizzly.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.glassfish.grizzly</groupId>
  91. <artifactId>grizzly-http-monitoring</artifactId>
  92. <version>${grizzly.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.glassfish.grizzly</groupId>
  96. <artifactId>grizzly-http-server-monitoring</artifactId>
  97. <version>${grizzly.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.eclipse.jetty</groupId>
  101. <artifactId>jetty-proxy</artifactId>
  102. <version>${jetty.version}</version>
  103. </dependency>
  104. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.atmosphere/atmosphere-jersey &ndash;&gt;-->
  105. <!--<dependency>-->
  106. <!--<groupId>org.atmosphere</groupId>-->
  107. <!--<artifactId>atmosphere-jersey</artifactId>-->
  108. <!--<version>2.5.4</version>-->
  109. <!--</dependency>-->
  110. <!--<dependency>-->
  111. <!--<groupId>org.atmosphere</groupId>-->
  112. <!--<artifactId>atmosphere-runtime</artifactId>-->
  113. <!--<version>2.5.4</version>-->
  114. <!--</dependency>-->
  115. <!--<dependency>-->
  116. <!--<groupId>org.glassfish.jersey.containers</groupId>-->
  117. <!--<artifactId>jersey-container-servlet</artifactId>-->
  118. <!--<version>2.29</version>-->
  119. <!--</dependency>-->
  120. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.geronimo.specs/geronimo-servlet_3.0_spec &ndash;&gt;-->
  121. <!--<dependency>-->
  122. <!--<groupId>org.apache.geronimo.specs</groupId>-->
  123. <!--<artifactId>geronimo-servlet_3.0_spec</artifactId>-->
  124. <!--<version>1.0</version>-->
  125. <!--<scope>provided</scope>-->
  126. <!--</dependency>-->
  127. <!--<dependency>-->
  128. <!--<groupId>org.atmosphere.client</groupId>-->
  129. <!--<artifactId>javascript</artifactId>-->
  130. <!--<version>2.3.9</version>-->
  131. <!--<type>war</type>-->
  132. <!--</dependency>-->
  133. <dependency>
  134. <groupId>commons-codec</groupId>
  135. <artifactId>commons-codec</artifactId>
  136. <version>${commons-codec.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>redis.clients</groupId>
  140. <artifactId>jedis</artifactId>
  141. <version>${jedis.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.maxmind.geoip2</groupId>
  145. <artifactId>geoip2</artifactId>
  146. <version>2.12.0</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.warrenstrange</groupId>
  150. <artifactId>googleauth</artifactId>
  151. <version>1.4.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.twilio.sdk</groupId>
  155. <artifactId>twilio</artifactId>
  156. <version>7.44.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.amazonaws</groupId>
  160. <artifactId>aws-java-sdk-s3</artifactId>
  161. <version>1.11.659</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.stripe</groupId>
  165. <artifactId>stripe-java</artifactId>
  166. <version>16.2.0</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.cobbzilla</groupId>
  170. <artifactId>restex</artifactId>
  171. <version>1.0.1-SNAPSHOT</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.cobbzilla</groupId>
  176. <artifactId>wizard-server-test</artifactId>
  177. <version>1.0.0-SNAPSHOT</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <!--<dependency>-->
  181. <!--<groupId>org.cobbzilla</groupId>-->
  182. <!--<artifactId>wizard-server-test</artifactId>-->
  183. <!--<version>1.0.0-SNAPSHOT</version>-->
  184. <!--</dependency>-->
  185. <!-- https://mvnrepository.com/artifact/io.swagger/swagger-jersey2-jaxrs -->
  186. <dependency>
  187. <groupId>io.swagger</groupId>
  188. <artifactId>swagger-jersey2-jaxrs</artifactId>
  189. <version>1.5.24</version>
  190. </dependency>
  191. </dependencies>
  192. <build>
  193. <resources>
  194. <resource>
  195. <directory>src/main/resources</directory>
  196. </resource>
  197. </resources>
  198. <plugins>
  199. <!-- Building the executable uberjar -->
  200. <plugin>
  201. <groupId>org.apache.maven.plugins</groupId>
  202. <artifactId>maven-shade-plugin</artifactId>
  203. <version>2.1</version>
  204. <executions>
  205. <execution>
  206. <phase>package</phase>
  207. <goals><goal>shade</goal></goals>
  208. <configuration>
  209. <transformers>
  210. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  211. <mainClass>bubble.server.BubbleServer</mainClass>
  212. </transformer>
  213. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  214. <resource>META-INF/spring.handlers</resource>
  215. </transformer>
  216. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  217. <resource>META-INF/spring.schemas</resource>
  218. </transformer>
  219. <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
  220. </transformers>
  221. <!-- Exclude signed jars to avoid errors
  222. see: http://stackoverflow.com/a/6743609/1251543
  223. -->
  224. <filters>
  225. <filter>
  226. <artifact>*:*</artifact>
  227. <excludes>
  228. <exclude>META-INF/*.SF</exclude>
  229. <exclude>META-INF/*.DSA</exclude>
  230. <exclude>META-INF/*.RSA</exclude>
  231. </excludes>
  232. </filter>
  233. </filters>
  234. </configuration>
  235. </execution>
  236. </executions>
  237. </plugin>
  238. <!-- update ansible/default_roles.json, copy scripts into jar -->
  239. <plugin>
  240. <groupId>org.codehaus.mojo</groupId>
  241. <artifactId>exec-maven-plugin</artifactId>
  242. <version>1.5.0</version>
  243. <executions>
  244. <execution>
  245. <phase>package</phase>
  246. <goals>
  247. <goal>exec</goal>
  248. </goals>
  249. <configuration>
  250. <executable>${project.basedir}/../bin/prep_bubble_jar</executable>
  251. </configuration>
  252. </execution>
  253. </executions>
  254. </plugin>
  255. </plugins>
  256. </build>
  257. </project>