pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.tzld.commons</groupId>
  5. <artifactId>llm-repository-spring-boot-starter</artifactId>
  6. <version>3.0.0</version>
  7. <packaging>jar</packaging>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. </properties>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-autoconfigure</artifactId>
  15. <version>2.4.2</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. <version>2.4.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <version>2.4.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <version>1.18.26</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>fastjson</artifactId>
  35. <version>1.2.40</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. <version>3.7</version>
  41. </dependency>
  42. </dependencies>
  43. <!-- 配置远程发布到私服,mvn deploy -->
  44. <distributionManagement>
  45. <repository>
  46. <id>stuuudy</id>
  47. <name>stuuudy Repository</name>
  48. <url>http://nexus.stuuudy.com:9580/nexus/content/repositories/stuuudy/</url>
  49. </repository>
  50. <snapshotRepository>
  51. <id>snapshots</id>
  52. <name>Snapshots</name>
  53. <url>http://nexus.stuuudy.com:9580/nexus/content/repositories/snapshots/</url>
  54. </snapshotRepository>
  55. </distributionManagement>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>2.3.2</version>
  62. <configuration>
  63. <source>1.8</source>
  64. <target>1.8</target>
  65. <encoding>utf8</encoding>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <version>2.4</version>
  72. <configuration>
  73. <testFailureIgnore>true</testFailureIgnore>
  74. <skip>true</skip>
  75. <skipTests>true</skipTests>
  76. </configuration>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-archetype-plugin</artifactId>
  81. <version>2.2</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-source-plugin</artifactId>
  85. <version>2.2.1</version>
  86. <configuration>
  87. <attach>true</attach>
  88. </configuration>
  89. <executions>
  90. <execution>
  91. <phase>compile</phase>
  92. <goals>
  93. <goal>jar</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>