pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>wildfirechat-parent</artifactId>
  5. <groupId>cn.wildfirechat</groupId>
  6. <version>1.1.7</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>sdk</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.google.code.gson</groupId>
  13. <artifactId>gson</artifactId>
  14. <version>2.8.9</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>commons-io</groupId>
  18. <artifactId>commons-io</artifactId>
  19. <version>2.7</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.googlecode.json-simple</groupId>
  23. <artifactId>json-simple</artifactId>
  24. <version>1.1.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>slf4j-api</artifactId>
  29. <version>1.7.5</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-log4j12</artifactId>
  34. <version>1.7.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-httpclient</groupId>
  38. <artifactId>commons-httpclient</artifactId>
  39. <version>3.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>uk.org.lidalia</groupId>
  43. <artifactId>slf4j-test</artifactId>
  44. <version>1.0.0-jdk6</version>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mockito</groupId>
  49. <artifactId>mockito-all</artifactId>
  50. <version>1.9.5</version>
  51. <type>jar</type>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. <version>4.5.13</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-codec</groupId>
  61. <artifactId>commons-codec</artifactId>
  62. <version>1.13</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.wildfirechat</groupId>
  66. <artifactId>common</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <finalName>${project.artifactId}-${version}</finalName>
  72. <defaultGoal>install</defaultGoal>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-assembly-plugin</artifactId>
  77. <configuration>
  78. <descriptorRefs>
  79. <descriptorRef>jar-with-dependencies</descriptorRef>
  80. </descriptorRefs>
  81. <finalName>checker</finalName>
  82. <appendAssemblyId>false</appendAssemblyId>
  83. <archive>
  84. <manifest>
  85. <mainClass>cn.wildfirechat.sdk.Main</mainClass>
  86. </manifest>
  87. </archive>
  88. </configuration>
  89. <executions>
  90. <execution>
  91. <id>assemble-all</id>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>single</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>