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.
 
 
 

130 lines
4.9 KiB

<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>lis</artifactId>
<groupId>com.sinosoft</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.sinosoft.lis.module.grp.finance</groupId>
<artifactId>lis-module-grp-finance-service</artifactId>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</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.module.grp.common</groupId>
<artifactId>lis-module-grp-common-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-util</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.common</groupId>
<artifactId>lis-module-grp-common-bl</artifactId>
</dependency>
<dependency>
<!-- <groupId>commons-fileupload</groupId>-->
<!-- <artifactId>commons-fileupload</artifactId>-->
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2-jakarta</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.account</groupId>
<artifactId>lis-module-grp-account-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.finance</groupId>
<artifactId>lis-model-finance-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.finance</groupId>
<artifactId>lis-module-grp-finance-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.bankinterface</groupId>
<artifactId>lis-module-grp-bankinterface-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.finance.common</groupId>
<artifactId>lis-module-grp-finance-common-bl</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.balance</groupId>
<artifactId>lis-module-grp-balance-schema</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.httpclient</groupId>
<artifactId>lis-http-client</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.lock</groupId>
<artifactId>lis-component-lock-schema</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.20</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.83</version>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.print</groupId>
<artifactId>lis-model-print-schema</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>