pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <groupId>com.fs</groupId>
  7. <artifactId>fs-spec-zone</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <name>fs-spec-zone</name>
  11. <description>企业微信数据与智能专区 - 专区程序</description>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba.fastjson2</groupId>
  20. <artifactId>fastjson2</artifactId>
  21. <version>2.0.50</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.netty</groupId>
  26. <artifactId>netty-all</artifactId>
  27. <version>4.1.68.Final</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-cli</groupId>
  31. <artifactId>commons-cli</artifactId>
  32. <version>1.4</version>
  33. </dependency>
  34. <!-- <dependency>
  35. <groupId>io.micrometer</groupId>
  36. <artifactId>micrometer-core</artifactId>
  37. <version>1.13.2</version>
  38. </dependency> -->
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-dependency-plugin</artifactId>
  45. <version>3.1.2</version>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-assembly-plugin</artifactId>
  49. <version>3.3.0</version>
  50. <configuration>
  51. <finalName>SpecDemo-with-dependencies</finalName>
  52. <appendAssemblyId>false</appendAssemblyId>
  53. <archive>
  54. <manifest>
  55. <mainClass>mytype.mycom.mygroup.SpecDemo</mainClass>
  56. </manifest>
  57. </archive>
  58. <descriptorRefs>
  59. <descriptorRef>jar-with-dependencies</descriptorRef>
  60. </descriptorRefs>
  61. </configuration>
  62. <executions>
  63. <execution>
  64. <id>make-assembly</id>
  65. <phase>package</phase>
  66. <goals>
  67. <goal>single</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>