pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.kirin</groupId>
  11. <artifactId>kirin_api</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>1.0</kirin.version>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.kingtom.kirin</groupId>
  22. <artifactId>kirin_dependencies</artifactId>
  23. <version>1.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. </dependencies>
  36. <build>
  37. <finalName>kirin</finalName>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.mybatis.generator</groupId>
  45. <artifactId>mybatis-generator-maven-plugin</artifactId>
  46. <version>1.4.0</version>
  47. <configuration>
  48. <configurationFile>${basedir}/src/main/resources/mybatis-generator.xml</configurationFile>
  49. <overwrite>true</overwrite>
  50. <verbose>true</verbose>
  51. </configuration>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.postgresql</groupId>
  55. <artifactId>postgresql</artifactId>
  56. <version>42.6.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.mybatis.generator</groupId>
  60. <artifactId>mybatis-generator-core</artifactId>
  61. <version>1.4.0</version>
  62. </dependency>
  63. </dependencies>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. <distributionManagement>
  68. <repository>
  69. <id>releases</id>
  70. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  71. </repository>
  72. <snapshotRepository>
  73. <id>snapshots</id>
  74. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  75. </snapshotRepository>
  76. </distributionManagement>
  77. </project>