The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

93 рядки
3.9 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>2.0.1</version>
  9. </parent>
  10. <groupId>bubble</groupId>
  11. <artifactId>bubble</artifactId>
  12. <!-- @@BUBBLE_VERSION@@ this comment must remain above the version tag so that _set_version can update it -->
  13. <version>1.5.2</version>
  14. <packaging>pom</packaging>
  15. <licenses>
  16. <license>
  17. <name>The Bubble License</name>
  18. <url>https://getbubblenow.com/bubble-license/</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <modules>
  23. <module>bubble-server</module>
  24. </modules>
  25. <profiles>
  26. <profile>
  27. <id>complete</id>
  28. <!-- these library modules hardly ever change, so don't build them all the time -->
  29. <modules>
  30. <module>utils</module>
  31. </modules>
  32. </profile>
  33. </profiles>
  34. <build>
  35. <plugins>
  36. <!-- use Java 11 -->
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>2.3.2</version>
  41. <configuration>
  42. <source>11</source>
  43. <target>11</target>
  44. <showWarnings>true</showWarnings>
  45. </configuration>
  46. </plugin>
  47. <!-- JUnit options -->
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <version>3.0.0-M4</version>
  52. <configuration>
  53. <forkCount>1</forkCount>
  54. <reuseForks>false</reuseForks>
  55. <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
  56. <reportFormat>plain</reportFormat>
  57. <trimStackTrace>false</trimStackTrace>
  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.CharsetDetectionTest</include>
  69. <include>bubble.test.filter.ProxyTest</include>
  70. <include>bubble.test.filter.TrafficAnalyticsTest</include>
  71. <include>bubble.test.filter.BlockSummaryTest</include>
  72. <include>bubble.test.filter.FlexRouterProximityComparatorTest</include>
  73. <include>bubble.test.system.BackupTest</include>
  74. <include>bubble.test.system.NetworkTest</include>
  75. <include>bubble.abp.spec.BlockListTest</include>
  76. <include>org.cobbzilla.util.io.regex.RegexFilterReaderTest</include>
  77. </includes>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>