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.
 
 
 
 

84 lines
2.9 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.AuthTest</include>
  61. <include>bubble.test.PaymentTest</include>
  62. <include>bubble.test.RecurringBillingTest</include>
  63. <include>bubble.test.DriverTest</include>
  64. <include>bubble.test.ProxyTest</include>
  65. <include>bubble.test.TrafficAnalyticsTest</include>
  66. <include>bubble.test.BackupTest</include>
  67. <include>bubble.test.NetworkTest</include>
  68. </includes>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>