pom.xml 1.5 KB

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