pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>cn.gyee</groupId>
  7. <artifactId>workflow</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.1.0.RELEASE</version>
  13. <relativePath/> <!-- 从存储库查找父级 -->
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.activiti</groupId>
  22. <artifactId>activiti-spring-boot-starter</artifactId>
  23. <version>7.0.0.Beta2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <version>5.1.45</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-jdbc</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>jul-to-slf4j</artifactId>
  41. <version>1.7.25</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-surefire-plugin</artifactId>
  57. <version>2.22.1</version>
  58. <configuration>
  59. <skipTests>true</skipTests>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. <!-- 阿里云maven仓库 -->
  65. <repositories>
  66. <repository>
  67. <id>public</id>
  68. <name>aliyun nexus</name>
  69. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  70. <releases>
  71. <enabled>true</enabled>
  72. </releases>
  73. </repository>
  74. </repositories>
  75. <pluginRepositories>
  76. <pluginRepository>
  77. <id>public</id>
  78. <name>aliyun nexus</name>
  79. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  80. <releases>
  81. <enabled>true</enabled>
  82. </releases>
  83. <snapshots>
  84. <enabled>false</enabled>
  85. </snapshots>
  86. </pluginRepository>
  87. </pluginRepositories>
  88. </project>