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.
 
 
 

166 lines
6.1 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.module.grp.common</groupId>
<artifactId>lis-module-grp-common-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>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-util</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.module.grp.common</groupId>
<artifactId>lis-module-grp-common-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.customer</groupId>
<artifactId>lis-model-customer-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.system</groupId>
<artifactId>lis-model-system-schema</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
</dependency>
<!-- 强制替换com.lowagie.itext引用的版本 -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk18on</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.bouncycastle</groupId>-->
<!-- <artifactId>bctsp-jdk16</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<exclusions>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcmail-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bctsp-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext-rtf</artifactId>
<exclusions>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcmail-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bctsp-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itextasian</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId> <!-- 用于jxl -->
</dependency>
<dependency>
<groupId>net.sourceforge.jexcelapi</groupId>
<artifactId>jxl</artifactId>
</dependency>
<dependency>
<groupId>QRCode</groupId>
<artifactId>QRCode_swetake</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.policy</groupId>
<artifactId>lis-model-policy-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.quotation</groupId>
<artifactId>lis-module-grp-quotation-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.user</groupId>
<artifactId>lis-model-user-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.workflow</groupId>
<artifactId>lis-component-workflow-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.httpclient</groupId>
<artifactId>lis-http-client</artifactId>
</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>