pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>server-chat</artifactId>
  7. <packaging>jar</packaging>
  8. <name>server-chat</name>
  9. <parent>
  10. <artifactId>jim-parent</artifactId>
  11. <groupId>org.j-im</groupId>
  12. <version>2.6.0.v20190114-RELEASE</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.j-im</groupId>
  17. <artifactId>jim-server</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>druid</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>log4j</groupId>
  29. <artifactId>log4j</artifactId>
  30. <version>1.2.16</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-api</artifactId>
  35. <version>1.7.7</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.googlecode.log4jdbc</groupId>
  39. <artifactId>log4jdbc</artifactId>
  40. <version>1.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-log4j12</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.quartz-scheduler</groupId>
  48. <artifactId>quartz</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>2.3.2</version>
  57. <configuration>
  58. <source>${jdk.version}</source>
  59. <target>${jdk.version}</target>
  60. <encoding>UTF-8</encoding>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-assembly-plugin</artifactId>
  65. <configuration>
  66. <appendAssemblyId>false</appendAssemblyId>
  67. <descriptorRefs>
  68. <descriptorRef>jar-with-dependencies</descriptorRef>
  69. </descriptorRefs>
  70. <archive>
  71. <manifest>
  72. <mainClass>com.cn.ServerChatStart</mainClass>
  73. </manifest>
  74. </archive>
  75. </configuration>
  76. <executions>
  77. <execution>
  78. <id>make-assembly</id>
  79. <phase>package</phase>
  80. <goals>
  81. <goal>assembly</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>