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.
 
 
 
 

86 lines
3.4 KiB

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