pom.xml 2.8 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. <groupId>com.bizzan.bitrade</groupId>
  7. <artifactId>bitrade-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>bipay-core</artifactId>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.7.0</version>
  19. <configuration>
  20. <source>1.8</source>
  21. <target>1.8</target>
  22. </configuration>
  23. </plugin>
  24. <plugin>
  25. <groupId>com.mysema.maven</groupId>
  26. <artifactId>apt-maven-plugin</artifactId>
  27. <version>1.1.3</version>
  28. <executions>
  29. <execution>
  30. <goals>
  31. <goal>process</goal>
  32. </goals>
  33. <configuration>
  34. <outputDirectory>target/generated-sources/java</outputDirectory>
  35. <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <dependencies>
  43. <dependency>
  44. <groupId>com.mashape.unirest</groupId>
  45. <artifactId>unirest-java</artifactId>
  46. <version>1.4.9</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.83</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-codec</groupId>
  63. <artifactId>commons-codec</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpclient</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-logging</groupId>
  71. <artifactId>commons-logging</artifactId>
  72. </dependency>
  73. </dependencies>
  74. </project>