ymate-module-fileuploader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.ymate.module</groupId> <artifactId>ymate-module-fileuploader</artifactId> <version>2.0.0</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-fileuploader-parent</artifactId> <groupId>net.ymate.module</groupId> <version>2.0.0</version> </parent> <artifactId>ymate-module-fileuploader</artifactId> <packaging>jar</packaging> <name>ymate-module-fileuploader</name> <url>https://www.ymate.net/</url> <description>YMP FileUploader Module</description> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <!-- <exclude>**/ymp-*.properties</exclude> --> <exclude>**/ymp-conf_DEV.properties</exclude> </excludes> <filtering>false</filtering> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestSections> <manifestSection> <name>net/ymate/module/fileuploader/</name> </manifestSection> </manifestSections> <manifestEntries> <Specification-Version>${project.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> </dependency> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> </dependency> <!-- <dependency> <groupId>com.madgag</groupId> <artifactId>animated-gif-lib</artifactId> </dependency> --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> </dependency> <dependency> <groupId>net.ymate.platform</groupId> <artifactId>ymate-platform-webmvc</artifactId> </dependency> <dependency> <groupId>net.ymate.module</groupId> <artifactId>ymate-module-fileuploader-commons</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>