The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

61 wiersze
1.8 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. </plugins>
  50. </build>
  51. </project>