Maven Repository - POM file for Http simple 4.0.6 4.0.6

Summary

Simple.

Simple is a high performance asynchronous HTTP server for Java.

Declaration

Here is the list of declaration for simple. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.simpleframework</groupId>
   <artifactId>simple</artifactId>
   <version>4.0.6</version>
</dependency>

If you think this Maven repository POM file listing for simple is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:LGPL
URL: http://www.gnu.org/licenses/lgpl.txt.





Depends on

The simple-4.0.6 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1966

Plugin

The following plugins are used in the simple-4.0.6.jar

  1. cobertura-maven-plugin
  2. maven-compiler-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the simple-4.0.6.jar

org.simpleframework.http
org.simpleframework.http.connect
org.simpleframework.http.core
org.simpleframework.http.parse
org.simpleframework.http.resource
org.simpleframework.http.session
org.simpleframework.http.transport
org.simpleframework.util
org.simpleframework.util.buffer
org.simpleframework.util.lease
org.simpleframework.util.parse
org.simpleframework.util.select
org.simpleframework.util.thread




POM File Source

Here is the content of the POM file.

<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>org.simpleframework</groupId>
  <artifactId>simple</artifactId>
  <packaging>jar</packaging>
  <version>4.0.6</version>
  <name>Simple</name>
  <url>http://www.simpleframework.org</url>
  <description>Simple is a high performance asynchronous HTTP server for Java</description>
  <licenses>
    <license>
      <name>LGPL</name>
      <url>http://www.gnu.org/licenses/lgpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
     <url>http://simpleweb.svn.sourceforge.net/viewvc/simpleweb/trunk</url>
     <connection>https://simpleweb.svn.sourceforge.net/svnroot/simpleweb/trunk</connection>
  </scm>  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  <build>
    <plugins>
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
              <source>1.5</source>
              <target>1.5</target>
         </configuration>
      </plugin>
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
         <executions>
            <execution>
                <id>attach-sources</id>
                <goals>
                    <goal>jar</goal>
                </goals>
            </execution>
         </executions>
      </plugin>
    </plugins>
  </build>
  <distributionManagement>
    <repository>
      <id>sourceforge</id>
      <name>Source Forge Repository</name>
      <url>scp://web.sourceforge.net/home/groups/s/si/simpleweb/htdocs/maven</url>
    </repository>
  </distributionManagement>
</project>