bpm-model-8.0.6.pom 1.7 KB

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