pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <artifactId>jim-server</artifactId>
  5. <packaging>jar</packaging>
  6. <name>jim-server</name>
  7. <parent>
  8. <groupId>org.j-im</groupId>
  9. <artifactId>jim-parent</artifactId>
  10. <version>2.6.0.v20190114-RELEASE</version>
  11. <relativePath>../jim-parent/pom.xml</relativePath>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.apache.httpcomponents</groupId>
  16. <artifactId>httpclient</artifactId>
  17. <version>4.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.j-im</groupId>
  21. <artifactId>jim-common</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.github.lukehutch</groupId>
  25. <artifactId>fast-classpath-scanner</artifactId>
  26. <version>2.4.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.thoughtworks.paranamer</groupId>
  30. <artifactId>paranamer</artifactId>
  31. <version>2.5.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jsoup</groupId>
  35. <artifactId>jsoup</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>2.3.2</version>
  44. <configuration>
  45. <source>${jdk.version}</source>
  46. <target>${jdk.version}</target>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>