pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.1.0</version>
  9. </parent>
  10. <groupId>com.kingtom.shengtai</groupId>
  11. <artifactId>shengtai_server</artifactId>
  12. <version>1.0</version>
  13. <properties>
  14. <java.version>17</java.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <kirin.version>2.0</kirin.version>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.kingtom.kirin</groupId>
  22. <artifactId>kirin_dependencies</artifactId>
  23. <version>2.0</version>
  24. <type>pom</type>
  25. <scope>import</scope>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. <dependencies>
  30. <!-- 基本 -->
  31. <dependency>
  32. <groupId>com.kingtom.kirin</groupId>
  33. <artifactId>kirin_api_core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-websocket</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <finalName>shengtai</finalName>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.mybatis.generator</groupId>
  49. <artifactId>mybatis-generator-maven-plugin</artifactId>
  50. <version>1.4.0</version>
  51. <configuration>
  52. <configurationFile>${basedir}/src/main/resources/mybatis-generator.xml</configurationFile>
  53. <overwrite>true</overwrite>
  54. <verbose>true</verbose>
  55. </configuration>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.postgresql</groupId>
  59. <artifactId>postgresql</artifactId>
  60. <version>42.6.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.mybatis.generator</groupId>
  64. <artifactId>mybatis-generator-core</artifactId>
  65. <version>1.4.0</version>
  66. </dependency>
  67. </dependencies>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. <distributionManagement>
  72. <repository>
  73. <id>releases</id>
  74. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  75. </repository>
  76. <snapshotRepository>
  77. <id>snapshots</id>
  78. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  79. </snapshotRepository>
  80. </distributionManagement>
  81. </project>