${project.artifactId}.
A Java event based WebSocket and HTTP server.
Here is the list of declaration for webbit. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.webbitserver</groupId> <artifactId>webbit</artifactId> <version>0.4.14</version> </dependency>
If you think this Maven repository POM file listing for webbit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD License
URL: http://www.opensource.org/licenses/bsd-license.
The webbit-0.4.14 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.10 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. | 1957 |
Testing Mock | mockito-all 1.9.0 Mock objects library for java | 257 |
JSON | gson 1.7.2 Google Gson library | 12 |
The following plugins are used in the webbit-0.4.14.jar
The following packages are defined in the webbit-0.4.14.jar
org.webbitserver org.webbitserver.handler org.webbitserver.handler.authentication org.webbitserver.handler.exceptions org.webbitserver.handler.logging org.webbitserver.helpers org.webbitserver.netty org.webbitserver.stub org.webbitserver.wrapper
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.webbitserver</groupId> <artifactId>webbit</artifactId> <name>${project.artifactId}</name> <description>A Java event based WebSocket and HTTP server</description> <url>http://webbitserver.org/</url> <version>0.4.14</version> <packaging>jar</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>6</version> </parent> <licenses> <license> <name>BSD License</name> <url>http://www.opensource.org/licenses/bsd-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/webbit/webbit.git</connection> <developerConnection>scm:git:git@github.com:webbit/webbit.git</developerConnection> <url>git://github.com/webbit/webbit.git</url> </scm> <repositories> <repository> <id>repository.jboss.org</id> <url>http://repository.jboss.org/nexus/content/groups/public/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>gson</id> <url>http://google-gson.googlecode.com/svn/mavenrepo</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> <version>3.5.2.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>1.7.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <encoding>UTF-8</encoding> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <configuration> <useAgent>true</useAgent> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>