ymate-platform-webmvc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.ymate.platform</groupId> <artifactId>ymate-platform-webmvc</artifactId> <version>2.1.3</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>ymate-platform-parent</artifactId> <groupId>net.ymate.platform</groupId> <version>2.1.3</version> </parent> <artifactId>ymate-platform-webmvc</artifactId> <packaging>jar</packaging> <name>ymate-platform-webmvc</name> <url>https://www.ymate.net/</url> <description>YMP WebMVC.</description> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestSections> <manifestSection> <name>net/ymate/platform/webmvc/</name> </manifestSection> </manifestSections> <manifestEntries> <Specification-Version>${project.parent.version}</Specification-Version> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${maven.build.timestamp}</Implementation-Version> <Implementation-Vendor>www.ymate.net</Implementation-Vendor> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> </dependency> <dependency> <groupId>net.ymate.platform</groupId> <artifactId>ymate-platform-cache</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>net.ymate.platform</groupId> <artifactId>ymate-platform-validation</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>net.ymate.platform</groupId> <artifactId>ymate-platform-plugin</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>