wf-struts
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.webframe</groupId>
<artifactId>wf-struts</artifactId>
<version>1.2.1</version>
</dependency><?xml version="1.0"?> <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>wf-parent</artifactId> <groupId>org.webframe</groupId> <version>1.2.1</version> <relativePath>../wf-parent/pom.xml</relativePath> </parent> <artifactId>wf-struts</artifactId> <packaging>jar</packaging> <name>wf-struts</name> <description>Java Web Frame: wf-struts</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- 子模块 --> <dependency> <groupId>org.webframe</groupId> <artifactId>wf-web</artifactId> </dependency> <dependency> <groupId>org.webframe</groupId> <artifactId>wf-test</artifactId> <scope>test</scope> </dependency> <!-- 子模块 --> <dependency> <groupId>struts</groupId> <artifactId>struts</artifactId> <version>1.2.9</version> </dependency> <!-- tomcat --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/main/webapp/WEB-INF</directory> <targetPath>META-INF/simple</targetPath> <includes> <include>web.xml</include> </includes> </resource> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> </build> </project>