Source code file content

Revision: 296 (of 296)

SendfileTask - refactoring DefaultSendfileTask into BufferedSendfileTask and TransferringSendfileTask
» Project Revision History

» Checkout URL

main / pom.xml

Size: 5603 bytes, 1 line
<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>
  <groupId>com.igorminar.grizzly-sendfile</groupId>
  <artifactId>grizzly-sendfile-project</artifactId>
  <packaging>pom</packaging>
  <version>0.4-SNAPSHOT</version>

  <name>grizzly-sendfile Project</name>
  <description>grizzly-sendfile is an extension for grizzly, the http connector
  of GlassFish application server. grizzly-sendfile is highly optimized for sending
  static files over HTTP and adds the "X-Sendfile" functionality to grizzly or
  GlassFish applications. This allows applications to offload file downloading
  functionality to the application server, which can take full advantage of lower
  level APIs like NIO to deliver files to clients very efficiently. See the wiki
  for more info.
  </description>
  <developers>
      <developer>
          <name>Igor Minar</name>
          <url>http://blog.igorminar.com</url>
      </developer>
  </developers>
  <inceptionYear>2008</inceptionYear>
  <licenses>
      <license>
          <name>GPL 2.0</name>
          <url>http://www.gnu.org/licenses/gpl-2.0.html</url>
      </license>
  </licenses>
  <url>http://grizzly-sendfile.kenai.com</url>
  <scm>
      <url>https://kenai.com/hg/grizzly-sendfile~main</url>
      <connection>scm:hg:https://kenai.com/hg/grizzly-sendfile~main</connection>
      <developerConnection>scm:hg:ssh://${kenai.username}@hg.kenai.com/grizzly-sendfile~main</developerConnection>
  </scm>
  <issueManagement>
      <system>jira</system>
      <url>http://kenai.com/jira/browse/GRIZZLY_SENDFILE</url>
  </issueManagement>
  <distributionManagement>
    <repository>
      <id>grizzly-sendfile-repo</id>
      <url>svn:https://kenai.com/svn/grizzly-sendfile~maven</url>
      <uniqueVersion>false</uniqueVersion>
    </repository>
  </distributionManagement>

  <modules>
    <module>sendfile-core</module>
    <module>grizzly-sendfile-g19</module>
    <module>grizzly-sendfile-g10</module>
<!--    <module>grizzly-sendfile-g20</module> -->
    <module>grizzly-sendfile-server</module>
    <module>sendfile-test</module>
  </modules>

  <repositories>
    <repository>
      <id>java.net</id>
      <url>http://download.java.net/maven/2</url>
    </repository>
    <repository>
      <id>glassfish repo</id>
      <url>http://download.java.net/maven/glassfish/</url>
    </repository>
  </repositories>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.sun.grizzly</groupId>
        <artifactId>grizzly-http</artifactId>
        <version>1.9.19-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>com.sun.grizzly</groupId>
        <artifactId>grizzly-http-servlet</artifactId>
        <version>1.9.19-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>com.sun.grizzly</groupId>
        <artifactId>grizzly-framework-http</artifactId>
        <version>1.0.32</version>
      </dependency>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.7</version>
      </dependency>
      <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.8.0</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <encoding>UTF-8</encoding>
          <showWarnings>true</showWarnings>
          <showDeprecation>true</showDeprecation>
          <compilerArgument>-Xlint</compilerArgument>
        </configuration>
      </plugin>
    </plugins>
    <extensions>
      <extension>
        <groupId>org.jvnet.wagon-svn</groupId>
        <artifactId>wagon-svn</artifactId>
        <version>1.8</version>
      </extension>
    </extensions>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.1.1</version>
        <reportSets>
          <reportSet>
            <reports>
              <report>index</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <formats>
            <format>html</format>
            <format>xml</format>
          </formats>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <xmlOutput>true</xmlOutput>
          <findbugsXmlOutput>true</findbugsXmlOutput>
          <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

</project>
  • Mysql
  • Glassfish
  • Jruby
  • Rails
  • Nblogo
Terms of Use; Privacy Policy;
© 2010, Oracle Corporation and/or its affiliates
(revision 20120518.3c65429)
 
 
Close
loading
Please Confirm
Close