pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>datart-parent</artifactId>
  7. <groupId>datart</groupId>
  8. <version>1.0.0-rc.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>datart-data-provider</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>data-provider-base</module>
  15. <module>jdbc-data-provider</module>
  16. <module>file-data-provider</module>
  17. <module>http-data-provider</module>
  18. </modules>
  19. <!-- <dependencies>-->
  20. <!-- <dependency>-->
  21. <!-- <groupId>org.springframework.boot</groupId>-->
  22. <!-- <artifactId>spring-boot-starter</artifactId>-->
  23. <!-- </dependency>-->
  24. <!-- <dependency>-->
  25. <!-- <groupId>org.apache.calcite</groupId>-->
  26. <!-- <artifactId>calcite-core</artifactId>-->
  27. <!-- <version>1.26.0</version>-->
  28. <!-- </dependency>-->
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.springframework.boot</groupId>-->
  31. <!-- <artifactId>spring-boot-starter-freemarker</artifactId>-->
  32. <!-- </dependency>-->
  33. <!-- <dependency>-->
  34. <!-- <groupId>datart</groupId>-->
  35. <!-- <artifactId>datart-core</artifactId>-->
  36. <!-- <version>${project.version}</version>-->
  37. <!-- <exclusions>-->
  38. <!-- <exclusion>-->
  39. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  40. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  41. <!-- </exclusion>-->
  42. <!-- </exclusions>-->
  43. <!-- </dependency>-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.springframework.boot</groupId>-->
  46. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  47. <!-- <scope>test</scope>-->
  48. <!-- </dependency>-->
  49. <!-- </dependencies>-->
  50. <!-- <build>-->
  51. <!-- <plugins>-->
  52. <!-- <plugin>-->
  53. <!-- &lt;!&ndash; This must be run AFTER the fmpp-maven-plugin &ndash;&gt;-->
  54. <!-- <groupId>org.codehaus.mojo</groupId>-->
  55. <!-- <artifactId>javacc-maven-plugin</artifactId>-->
  56. <!-- <version>2.4</version>-->
  57. <!-- <executions>-->
  58. <!-- <execution>-->
  59. <!-- <phase>generate-resources</phase>-->
  60. <!-- <id>javacc</id>-->
  61. <!-- <goals>-->
  62. <!-- <goal>javacc</goal>-->
  63. <!-- </goals>-->
  64. <!-- </execution>-->
  65. <!-- </executions>-->
  66. <!-- <configuration>-->
  67. <!-- <sourceDirectory>${basedir}/src/main/java/codegen/</sourceDirectory>-->
  68. <!-- <outputDirectory>${project.build.directory}/generated-sources/javacc</outputDirectory>-->
  69. <!-- </configuration>-->
  70. <!-- </plugin>-->
  71. <!-- </plugins>-->
  72. <!-- </build>-->
  73. </project>