pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-module-system</artifactId>
  6. <parent>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <artifactId>jeecg-boot-parent</artifactId>
  9. <version>2.2.0</version>
  10. </parent>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-boot-base-common</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jeecg-boot-module-activiti</artifactId>
  37. <version>${jeecgboot.version}</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>