pom.xml 2.7 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-data-provider</artifactId>
  7. <groupId>datart</groupId>
  8. <version>1.0.0-rc.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>datart-data-provider-base</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.calcite</groupId>
  24. <artifactId>calcite-core</artifactId>
  25. <version>1.26.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-freemarker</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>datart</groupId>
  33. <artifactId>datart-core</artifactId>
  34. <version>${project.version}</version>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>mybatis-spring-boot-starter</artifactId>
  38. <groupId>org.mybatis.spring.boot</groupId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <!-- This must be run AFTER the fmpp-maven-plugin -->
  52. <groupId>org.codehaus.mojo</groupId>
  53. <artifactId>javacc-maven-plugin</artifactId>
  54. <version>2.4</version>
  55. <executions>
  56. <execution>
  57. <phase>generate-resources</phase>
  58. <id>javacc</id>
  59. <goals>
  60. <goal>javacc</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. <configuration>
  65. <sourceDirectory>${basedir}/src/main/java/codegen/</sourceDirectory>
  66. <outputDirectory>${project.build.directory}/generated-sources/javacc</outputDirectory>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>