| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.hotent</groupId>
- <artifactId>eip</artifactId>
- <version>8.0.7</version>
- </parent>
- <artifactId>bpm-runtime</artifactId>
- <name>bpm-runtime</name>
- <description>bpm runtime</description>
- <!-- 定义参数 -->
- <properties>
- <java.xmlbuilder.version>0.6</java.xmlbuilder.version>
- </properties>
- <dependencies>
- <!-- Spring boot 测试 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- activiti -->
- <dependency>
- <groupId>com.hotent</groupId>
- <artifactId>activiti</artifactId>
- <version>${parent.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jamesmurty.utils</groupId>
- <artifactId>java-xmlbuilder</artifactId>
- <version>${java.xmlbuilder.version}</version>
- </dependency>
- <!-- rest-auth-service 获取请求方法的授权信息 portal门户模块请不要依赖 只在 bpm-model bpm-runtime
- form,uc中依赖 -->
- <dependency>
- <groupId>com.hotent</groupId>
- <artifactId>rest-auth-service</artifactId>
- <version>${parent.version}</version>
- </dependency>
- </dependencies>
- <!-- 用于生成jar文件-->
- <build>
- <finalName>bpm-runtime</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring.boot.version}</version>
- <configuration>
- <mainClass>com.hotent.runtime.Application</mainClass>
- <layout>JAR</layout>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- <configuration>
- <attach>false</attach>
- <classifier>boot</classifier>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
- </project>
|