The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

89 regels
3.4 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2019 jonathan cobb
  4. This code is available under the GNU Affero General Public License, version 3: https://www.gnu.org/licenses/agpl-3.0.html
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>org.cobbzilla</groupId>
  10. <artifactId>cobbzilla-parent</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. </parent>
  13. <groupId>bubble</groupId>
  14. <artifactId>bubble</artifactId>
  15. <version>1.0.0-SNAPSHOT</version>
  16. <packaging>pom</packaging>
  17. <licenses>
  18. <license>
  19. <name>The GNU Affero General Public License, Version 3</name>
  20. <url>https://www.gnu.org/licenses/agpl-3.0.html</url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <modules>
  25. <module>bubble-server</module>
  26. </modules>
  27. <profiles>
  28. <profile>
  29. <id>complete</id>
  30. <!-- these library modules hardly ever change, so don't build them all the time -->
  31. <modules>
  32. <module>utils</module>
  33. </modules>
  34. </profile>
  35. </profiles>
  36. <build>
  37. <plugins>
  38. <!-- use Java 11 -->
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>2.3.2</version>
  43. <configuration>
  44. <source>11</source>
  45. <target>11</target>
  46. <showWarnings>true</showWarnings>
  47. </configuration>
  48. </plugin>
  49. <!-- JUnit options -->
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-surefire-plugin</artifactId>
  53. <version>3.0.0-M4</version>
  54. <configuration>
  55. <forkCount>1</forkCount>
  56. <reuseForks>false</reuseForks>
  57. <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
  58. <includes>
  59. <include>bubble.test.DbInit</include>
  60. <include>bubble.test.system.AuthTest</include>
  61. <include>bubble.test.payment.PaymentTest</include>
  62. <include>bubble.test.payment.RecurringBillingTest</include>
  63. <include>bubble.test.promo.FirstMonthFreePromotionTest</include>
  64. <include>bubble.test.promo.ReferralMonthFreePromotionTest</include>
  65. <include>bubble.test.promo.AccountCreditTest</include>
  66. <include>bubble.test.promo.MultiplePromotionsTest</include>
  67. <include>bubble.test.system.DriverTest</include>
  68. <include>bubble.test.filter.ProxyTest</include>
  69. <include>bubble.test.filter.TrafficAnalyticsTest</include>
  70. <include>bubble.test.system.BackupTest</include>
  71. <include>bubble.test.system.NetworkTest</include>
  72. <include>bubble.abp.spec.BlockListTest</include>
  73. </includes>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>