secure-client-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.raysha.lib.net</groupId>
<artifactId>secure-client-server</artifactId>
<version>1.0</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"> <modelVersion>4.0.0</modelVersion> <groupId>de.raysha.lib.net</groupId> <artifactId>secure-client-server</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>Secure Client/Server</name> <description> This is a small library for establish a secure connection between client and server via java-sockets. </description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <url>http://github.com/rainu/secure-client-server</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/rainu/secure-client-server.git</connection> <developerConnection>scm:git:ssh://git@github.com/rainu/secure-client-server.git</developerConnection> <url>http://github.com/rainu/secure-client-server</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/rainu/secure-client-server/issues</url> </issueManagement> <developers> <developer> <id>rainu</id> <name>Rainu</name> <email>rainu@raysha.de</email> <roles> <role>Developer</role> </roles> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <source>1.6</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> </project>