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.
 
 
 

147 lines
5.6 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.print</groupId>
<artifactId>lis-component-print-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.component.dictionary</groupId>
<artifactId>lis-component-dictionary-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.serialno</groupId>
<artifactId>lis-component-serialno-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-security</artifactId>
</dependency>
<dependency>
<groupId>com.f1j</groupId>
<artifactId>F1J9Swing</artifactId>
</dependency>
<dependency>
<!-- <groupId>javax.servlet.jsp</groupId>-->
<!-- <artifactId>jsp-api</artifactId>-->
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
<scope>provided</scope>
</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.framework</groupId>
<artifactId>lis-framework-util</artifactId>
</dependency>
<dependency>
<groupId>QRCode</groupId>
<artifactId>QRCode_swetake</artifactId>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.print</groupId>
<artifactId>lis-component-print-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.customer</groupId>
<artifactId>lis-model-customer-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.agent</groupId>
<artifactId>lis-model-agent-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.finance</groupId>
<artifactId>lis-model-finance-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.system</groupId>
<artifactId>lis-model-system-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.policy</groupId>
<artifactId>lis-model-policy-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.user</groupId>
<artifactId>lis-model-user-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.claim</groupId>
<artifactId>lis-model-claim-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.underwriting</groupId>
<artifactId>lis-model-underwriting-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.product</groupId>
<artifactId>lis-model-product-schema</artifactId>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.certification</groupId>
<artifactId>lis-model-certification-schema</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.print</groupId>
<artifactId>lis-model-print-schema</artifactId>
<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>