pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.3.2</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.yunlian.yos</groupId>
  12. <artifactId>YOS</artifactId>
  13. <version>3.0.0</version>
  14. <packaging>war</packaging>
  15. <name>yos</name>
  16. <description>yos</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <!--yos-core代码仓库-->
  23. <id>2508151-release-SMbuAp</id>
  24. <url>https://packages.aliyun.com/6757c881c2681cbfb7c09f57/maven/2508151-release-smbuap</url>
  25. <releases>
  26. <enabled>true</enabled>
  27. </releases>
  28. <snapshots>
  29. <enabled>true</enabled>
  30. </snapshots>
  31. </repository>
  32. </repositories>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-logging</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-websocket</artifactId>
  47. </dependency>
  48. <!--log日志 -->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-log4j2</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>log4j</groupId>
  55. <artifactId>log4j</artifactId>
  56. <version>1.2.17</version>
  57. </dependency>
  58. <!--yos核心运行库-->
  59. <dependency>
  60. <groupId>com.yunlian.yos</groupId>
  61. <artifactId>yos-core</artifactId>
  62. <version>3.0.0</version>
  63. </dependency>
  64. <!-- <dependency>-->
  65. <!-- <groupId>org.springframework.boot</groupId>-->
  66. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  67. <!-- </dependency>-->
  68. <dependency>
  69. <groupId>org.apache.cxf</groupId>
  70. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  71. <version>3.2.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.glassfish.grizzly</groupId>
  75. <artifactId>grizzly-http</artifactId>
  76. <version>2.3.23</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.codehaus.jackson</groupId>
  80. <artifactId>jackson-mapper-asl</artifactId>
  81. <version>1.9.13</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <!--打包名称规则-->
  86. <finalName>${project.artifactId}</finalName>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <mainClass>common.YosApplication</mainClass>
  93. </configuration>
  94. <executions>
  95. <execution>
  96. <goals>
  97. <goal>repackage</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>