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.
 
 
 

57 lines
2.2 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.customer</groupId>
<artifactId>lis-module-grp-customer-web</artifactId>
<packaging>war</packaging>
<dependencies>
<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>
<!-- 调整到lis-web中依赖 -->
<!--dependency>
<groupId>com.sinosoft.lis.module.grp.customer</groupId>
<artifactId>lis-module-grp-customer-service</artifactId>
</dependency-->
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-base</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft.lis.framework</groupId>
<artifactId>lis-framework-web</artifactId>
<type>war</type>
</dependency>
</dependencies>
<build>
<finalName>lis-module-grp-customer-web</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
</project>