pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.kingtom.kirin</groupId>
  7. <artifactId>kirin_generator</artifactId>
  8. <version>1.0</version>
  9. <dependencyManagement>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.kingtom.kirin</groupId>
  13. <artifactId>kirin_dependencies</artifactId>
  14. <version>1.0</version>
  15. <type>pom</type>
  16. <scope>import</scope>
  17. </dependency>
  18. </dependencies>
  19. </dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.kingtom.kirin</groupId>
  23. <artifactId>kirin_generator_core</artifactId>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.mybatis.generator</groupId>
  30. <artifactId>mybatis-generator-maven-plugin</artifactId>
  31. <version>1.4.0</version>
  32. <configuration>
  33. <configurationFile>${basedir}/src/main/resources/mybatis-generator.xml</configurationFile>
  34. <overwrite>true</overwrite>
  35. <verbose>true</verbose>
  36. </configuration>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.postgresql</groupId>
  40. <artifactId>postgresql</artifactId>
  41. <version>42.6.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.mybatis.generator</groupId>
  45. <artifactId>mybatis-generator-core</artifactId>
  46. <version>1.4.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.kingtom.kirin</groupId>
  50. <artifactId>kirin_generator_core</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. </dependencies>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <distributionManagement>
  58. <repository>
  59. <id>releases</id>
  60. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  61. </repository>
  62. <snapshotRepository>
  63. <id>snapshots</id>
  64. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  65. </snapshotRepository>
  66. </distributionManagement>
  67. </project>