Maven Repository - POM file for Web Framework Java-WebSocket 1.3.0 1.3.0

Summary

Java WebSocket.

A barebones WebSocket client and server implementation written in 100% Java.

Declaration

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

<dependency>
   <groupId>org.java-websocket</groupId>
   <artifactId>Java-WebSocket</artifactId>
   <version>1.3.0</version>
</dependency>

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

License

Name:MIT License
URL: http://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE.





Plugin

The following plugins are used in the Java-WebSocket-1.3.0.jar

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

Packages

The following packages are defined in the Java-WebSocket-1.3.0.jar

org.java_websocket
org.java_websocket.client
org.java_websocket.drafts
org.java_websocket.exceptions
org.java_websocket.framing
org.java_websocket.handshake
org.java_websocket.server
org.java_websocket.util




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <scm>
        <connection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</connection>
        <developerConnection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</developerConnection>
        <url>git@github.com:TooTallNate/Java-WebSocket.git</url>
    </scm>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.java-websocket</groupId>
    <artifactId>Java-WebSocket</artifactId>
    <version>1.3.0</version>
    <packaging>jar</packaging>
    <name>Java WebSocket</name>
    <url>http://java-websocket.org/</url>
    <description>A barebones WebSocket client and server implementation written in 100% Java</description>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.6</java.version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
        </license>
    </licenses>
    <profiles>                                                                                                                      
      <profile>                                                                                                                     
        <id>release-sign-artifacts</id>                                                                                             
        <activation>                                                                                                                
          <property><name>performRelease</name><value>true</value></property>                                                       
        </activation>                                                                                                               
        <build>                                                                                                                     
          <plugins>                                                                                                                 
            <plugin>                                                                                                                
              <groupId>org.apache.maven.plugins</groupId>                                                                           
              <artifactId>maven-gpg-plugin</artifactId>                                                                             
              <version>1.1</version>                                                                                                
              <executions>                                                                                                          
                <execution>                                                                                                         
                  <id>sign-artifacts</id>                                                                                           
                  <phase>verify</phase>                                                                                             
                  <goals>                                                                                                           
                    <goal>sign</goal>                                                                                               
                  </goals>                                                                                                          
                </execution>                                                                                                        
              </executions>                                                                                                         
              <configuration>                                                                                                       
                <keyname>rohmer.david@gmail.com&gt;</keyname>                                                                                          
              </configuration>                                                                                                      
            </plugin>                                                                                                               
          </plugins>                                                                                                                
        </build>                                                                                                                    
      </profile>                                                                                                                    
    </profiles>     
</project>