bpm-runtime-8.0.7.pom 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <parent>
  6. <groupId>com.hotent</groupId>
  7. <artifactId>eip</artifactId>
  8. <version>8.0.7</version>
  9. </parent>
  10. <artifactId>bpm-runtime</artifactId>
  11. <name>bpm-runtime</name>
  12. <description>bpm runtime</description>
  13. <!-- 定义参数 -->
  14. <properties>
  15. <java.xmlbuilder.version>0.6</java.xmlbuilder.version>
  16. </properties>
  17. <dependencies>
  18. <!-- Spring boot 测试 -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- activiti -->
  25. <dependency>
  26. <groupId>com.hotent</groupId>
  27. <artifactId>activiti</artifactId>
  28. <version>${parent.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.jamesmurty.utils</groupId>
  32. <artifactId>java-xmlbuilder</artifactId>
  33. <version>${java.xmlbuilder.version}</version>
  34. </dependency>
  35. <!-- rest-auth-service 获取请求方法的授权信息 portal门户模块请不要依赖 只在 bpm-model bpm-runtime
  36. form,uc中依赖 -->
  37. <dependency>
  38. <groupId>com.hotent</groupId>
  39. <artifactId>rest-auth-service</artifactId>
  40. <version>${parent.version}</version>
  41. </dependency>
  42. </dependencies>
  43. <!-- 用于生成jar文件-->
  44. <build>
  45. <finalName>bpm-runtime</finalName>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <version>${spring.boot.version}</version>
  51. <configuration>
  52. <mainClass>com.hotent.runtime.Application</mainClass>
  53. <layout>JAR</layout>
  54. </configuration>
  55. <executions>
  56. <execution>
  57. <goals>
  58. <goal>repackage</goal>
  59. </goals>
  60. <configuration>
  61. <attach>false</attach>
  62. <classifier>boot</classifier>
  63. </configuration>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>