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.
 
 
 

120 lines
4.3 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>lis</artifactId>
<groupId>com.sinosoft</groupId>
<version>${revision}</version>
</parent>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-service</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>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>com.sinosoft.lis.model.system</groupId>
<artifactId>lis-model-system-schema</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.dictionary</groupId>
<artifactId>lis-component-dictionary-bl</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<version>5.8.31</version>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.policy</groupId>
<artifactId>lis-model-policy-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.serialno</groupId>
<artifactId>lis-component-serialno-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.claim</groupId>
<artifactId>lis-model-claim-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.workflow</groupId>
<artifactId>lis-model-workflow-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.model.claim</groupId>
<artifactId>lis-model-claim-schema</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.component.serialno</groupId>
<artifactId>lis-component-serialno-bl</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.claim</groupId>
<artifactId>lis-module-grp-claim-service</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.pa</groupId>
<artifactId>lis-module-grp-pa-service</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.module.grp.finance</groupId>
<artifactId>lis-module-grp-finance-service</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</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>