filemanager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.kindeditor</groupId> <artifactId>filemanager</artifactId> <version>0.0.2</version> </dependency>
<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> <groupId>net.kindeditor</groupId> <artifactId>filemanager</artifactId> <version>0.0.2</version> <packaging>jar</packaging> <name>kind-file-manager</name> <description> KindEditor(http://kindeditor.org/) is a lightweight, Open Source(LGPL), cross browser, web based WYSIWYG HTML editor. kind-file-manager is the upload manager and file manager for kindeditor, it use Servlet 3.0 technology, and can be deployed as a single web fragment jar. </description> <url>https://github.com/luyanfei/kind-file-manager</url> <scm> <connection>scm:git:git@github.com:luyanfei/kind-file-manager.git</connection> <developerConnection>scm:git:git@github.com:luyanfei/kind-file-manager.git</developerConnection> <url>git@github.com:luyanfei/kind-file-manager.git</url> </scm> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE Version 3</name> <url>http://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>luyanfei</id> <name>吕焱飞</name> <email>luyanfei78@163.com</email> </developer> </developers> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.3.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> </dependencies> </project>