pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>bitrade-parent</artifactId>
  7. <groupId>com.bizzan.bitrade</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>contract-swap-core</artifactId>
  12. <description>永续合约核心模块</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-jpa</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.bizzan.bitrade</groupId>
  24. <artifactId>core</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <!---QueryDSL开始-->
  28. <dependency>
  29. <groupId>com.querydsl</groupId>
  30. <artifactId>querydsl-apt</artifactId>
  31. <version>4.1.3</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.querydsl</groupId>
  36. <artifactId>querydsl-jpa</artifactId>
  37. <version>4.1.3</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.inject</groupId>
  41. <artifactId>javax.inject</artifactId>
  42. <version>1</version>
  43. </dependency>
  44. <!---QueryDSL结束-->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>com.mysema.maven</groupId>
  54. <artifactId>apt-maven-plugin</artifactId>
  55. <version>1.1.3</version>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>process</goal>
  60. </goals>
  61. <configuration>
  62. <outputDirectory>target/generated-sources/java</outputDirectory>
  63. <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>