codelabor-system-file-servlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codelabor</groupId> <artifactId>codelabor-system-file-servlet</artifactId> <version>2.0.1</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/maven-v4_0_0.xsd"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.codelabor</groupId> <artifactId>codelabor-system-file-servlet</artifactId> <packaging>war</packaging> <version>2.0.1</version> <name>codelabor-system-file-servlet</name> <url>http://codelabor.org</url> <dependencies> <dependency> <groupId>org.codelabor</groupId> <artifactId>codelabor-system-file</artifactId> <version>2.0.1</version> <type>jar</type> <optional>false</optional> <exclusions> <exclusion> <groupId>ojdbc</groupId> <artifactId>ojdbc</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-webmvc-struts</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-webmvc-portlet</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> </exclusion> <exclusion> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> </exclusion> <exclusion> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> </exclusion> <exclusion> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>jasperreports</groupId> <artifactId>jasperreports</artifactId> </exclusion> <exclusion> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> </exclusion> <exclusion> <groupId>jfree</groupId> <artifactId>jcommon</artifactId> </exclusion> <exclusion> <groupId>rhino</groupId> <artifactId>js</artifactId> </exclusion> <exclusion> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> </exclusion> <exclusion> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> </exclusion> <exclusion> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>2.2</version> <type>jar</type> <optional>false</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <type>jar</type> <optional>false</optional> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <repositories> <repository> <id>anyframe-repository</id> <name>repository for Anyframe</name> <url>http://dev.anyframejava.org/artifactory/anyframe-repository</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <developers> <developer> <id>bomber</id> <name>Shin Sangjae</name> <email>codelabor@gmail.com</email> <url>http://codelabor.org</url> <organization>CODELABOR</organization> <organizationUrl>http://codelabor.org</organizationUrl> <timezone>+9</timezone> <roles> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://codelabor.googlecode.com/svn/tags/codelabor-system-file-servlet-2.0.1</connection> <developerConnection>scm:svn:https://codelabor.googlecode.com/svn/tags/codelabor-system-file-servlet-2.0.1</developerConnection> <tag>HEAD</tag> <url>http://codelabor.googlecode.com/svn/tags/codelabor-system-file-servlet-2.0.1</url> </scm> <organization> <name>CODELABOR</name> <url>http://codelabor.org</url> </organization> <build> <finalName>codelabor-system-file-servlet</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-soruces</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <configuration> <descriptors> <descriptor>src/assemble/bin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> <configuration> <tagBase>https://codelabor.googlecode.com/svn/tags</tagBase> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <configuration> <server>tomcat.localhost</server> <path>/codelabor-system-file-servlet</path> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.0</version> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>