pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.wink.sdk</groupId>
  5. <artifactId>hk</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>hk</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <repositories>
  14. <repository>
  15. <id>nexus-aliyun</id>
  16. <url>https://maven.aliyun.com/repository/central</url>
  17. </repository>
  18. <repository>
  19. <id>Local repository</id>
  20. <url>file://${basedir}/libs</url>
  21. </repository>
  22. </repositories>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.sun.jna</groupId>
  26. <artifactId>jna</artifactId>
  27. <version>3.0.9</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-logging</groupId>
  31. <artifactId>commons-logging</artifactId>
  32. <version>1.2</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.47</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>4.1.19</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. <version>3.17</version>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  50. <dependency>
  51. <groupId>log4j</groupId>
  52. <artifactId>log4j</artifactId>
  53. <version>1.2.17</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <version>4.11</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.beautyeye</groupId>
  63. <artifactId>beautyeye</artifactId>
  64. <version>1.0.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.sun</groupId>
  68. <artifactId>jna.platform</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <version>3.1</version>
  78. <configuration>
  79. <source>1.8</source>
  80. <target>1.8</target>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>