You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

161 lines
6.3 KiB

<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sinosoft</groupId>
<artifactId>lis</artifactId>
<version>${revision}</version>
</parent>
<groupId>com.sinosoft.lis.component.workflow</groupId>
<artifactId>lis-component-workflow-bl</artifactId>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-util</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.workflow</groupId>
<artifactId>lis-component-workflow-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.workflow</groupId>
<artifactId>lis-model-workflow-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.calculator</groupId>
<artifactId>lis-component-calculator-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.policy</groupId>
<artifactId>lis-model-policy-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.policyadmin</groupId>
<artifactId>lis-model-policyadmin-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.underwriting</groupId>
<artifactId>lis-model-underwriting-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.claim</groupId>
<artifactId>lis-model-claim-schema</artifactId>
</dependency>
<!-- 强制使用指定版本的 commons-logging,替换batik使用的版本 -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<!-- 强制使用指定版本的 xml-apis,替换batik使用的版本 -->
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<!-- 强制使用指定版本的 commons-io,替换batik使用的版本 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.lock</groupId>
<artifactId>lis-component-lock-bl</artifactId>
</dependency>
<dependency>
<!-- <groupId>javax.servlet</groupId>-->
<!--<artifactId>javax.servlet-api</artifactId>-->
<!--改为依赖Jakarta.servlet-->
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.agent</groupId>
<artifactId>lis-model-agent-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.finance</groupId>
<artifactId>lis-model-finance-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.product</groupId>
<artifactId>lis-model-product-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.user</groupId>
<artifactId>lis-model-user-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.system</groupId>
<artifactId>lis-model-system-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.log</groupId>
<artifactId>lis-component-log-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.customer</groupId>
<artifactId>lis-model-customer-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.cache</groupId>
<artifactId>lis-component-cache-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.tax</groupId>
<artifactId>lis-component-tax-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.bankinterface</groupId>
<artifactId>lis-model-bankinterface-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.workflow</groupId>
<artifactId>lis-module-workflow-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.tax</groupId>
<artifactId>lis-model-tax-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.event</groupId>
<artifactId>lis-component-event-bl</artifactId>
<version>7.2021</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>