pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>jeecg-boot-base-common</artifactId>
  6. <version>2.0.2</version>
  7. <dependencies>
  8. <dependency>
  9. <groupId>org.codehaus.groovy</groupId>
  10. <artifactId>groovy</artifactId>
  11. </dependency>
  12. </dependencies>
  13. <parent>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-parent</artifactId>
  16. <version>2.0.2</version>
  17. </parent>
  18. <repositories>
  19. <repository>
  20. <id>aliyun</id>
  21. <name>aliyun Repository</name>
  22. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  23. <snapshots>
  24. <enabled>false</enabled>
  25. </snapshots>
  26. </repository>
  27. <repository>
  28. <id>jeecg</id>
  29. <name>jeecg Repository</name>
  30. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  31. <snapshots>
  32. <enabled>false</enabled>
  33. </snapshots>
  34. </repository>
  35. </repositories>
  36. </project>