Skip to content

Commit

Permalink
initial release update
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiSchwarz-cnic committed Jun 18, 2018
1 parent a1d5609 commit 85efb14
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ispapi-lib-java</name>
<name>java-sdk</name>
<comment></comment>
<projects>
</projects>
Expand Down
2 changes: 1 addition & 1 deletion .sts4-cache/classpath-data.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"classpathEntries":["/home/kai/.m2/repository/junit/junit/4.11/junit-4.11.jar","/home/kai/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar","/home/kai/git/ispapi-lib-java/ispapi-lib-java/target/classes","/home/kai/git/ispapi-lib-java/ispapi-lib-java/target/test-classes"],"name":"ispapi-lib-java","classpathResources":[],"outputFolder":"/home/kai/git/ispapi-lib-java/ispapi-lib-java/target/classes"}
{"classpathEntries":["/home/kai/.m2/repository/junit/junit/4.11/junit-4.11.jar","/home/kai/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar","/home/kai/git/java-sdk/target/classes","/home/kai/git/java-sdk/target/test-classes"],"name":"java-sdk","classpathResources":[],"outputFolder":"/home/kai/git/java-sdk/target/classes"}
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"configurations": [
{
"type": "java",
"name": "Debug (Launch)-Client<ispapi-lib-java>",
"name": "Debug (Launch)-Client<java-sdk>",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "net.ispapi.apiconnector.Client",
"projectName": "ispapi-lib-java",
"mainClass": "net.hexonet.apiconnector.Client",
"projectName": "java-sdk",
"args": ""
},
{
Expand Down
12 changes: 6 additions & 6 deletions .vscode/launch.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"default": "",
"items": [
{
"name": "ispapi-lib-java",
"projectName": "ispapi-lib-java",
"workingDirectory": "/home/kai/git/ispapi-lib-java",
"name": "java-sdk",
"projectName": "java-sdk",
"workingDirectory": "/home/kai/git/java-sdk",
"args": [],
"vmargs": [],
"preLaunchTask": ""
Expand All @@ -16,9 +16,9 @@
"default": "",
"items": [
{
"name": "ispapi-lib-java",
"projectName": "ispapi-lib-java",
"workingDirectory": "/home/kai/git/ispapi-lib-java",
"name": "java-sdk",
"projectName": "java-sdk",
"workingDirectory": "/home/kai/git/java-sdk",
"args": [],
"vmargs": [],
"preLaunchTask": ""
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log

## 1.3.12-SNAPSHOT

* HM-265 fix README [07c5be4](null/commit/07c5be4e2d1388149fe3825011e38df428693734)
* HM-265 reviewed README [a63d5c3](null/commit/a63d5c38770c7dbd9dd56637bad22f9880885de4)
* HM-265 fixed issue in constructor [5c290e0](null/commit/5c290e02efe3047e0d70b76d7ed2e9c42fcfc248)
Expand All @@ -26,5 +27,4 @@
* HM-265 minor cleanup; packaging try out [28d9a96](null/commit/28d9a96dd0cce92170a2f8bada02701676db718f)
* HM-265 set socketcfg to null after logout [13ac504](null/commit/13ac504ac75f5913d7fd6bb5d68b694776f3f25d)
* HM-265 updated launch file [15ab70f](null/commit/15ab70fc562640b0c07a320f83ce4bf4334e69bc)
* HM-265 RC1 of java SDK [cfb7d33](null/commit/cfb7d33fda92efcc5fd0afdd422374effaa6b567)

* HM-265 RC1 of java SDK [cfb7d33](null/commit/cfb7d33fda92efcc5fd0afdd422374effaa6b567)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ If this runs still in an error, well rollback and set a new version manually by

Sounds weird, but issues only happened while we were setting up the pom.xml accordingly, we shouldn't have to get in contact with further issues from now on.

Packages can be found in the appropriate version subfolder in "/tmp/net/ispapi/apiconnector/" or in project's subfolder "target".
Packages can be found in the appropriate version subfolder in "/tmp/net/hexonet/apiconnector/" or in project's subfolder "target".
This includes JAR and md5/sha1 files for compiled files, source files, javadoc in the tmp folder.

### Snapshot Release

Nothing special. Use `mvn deploy` to get a development / snapshot version build.
Packages can be found in the appropriate version subfolder in "/tmp/net/ispapi/apiconnector/" or in project's subfolder "target".
Packages can be found in the appropriate version subfolder in "/tmp/net/hexonet/apiconnector/" or in project's subfolder "target".
This includes JAR and md5/sha1 files for compiled files, source files, javadoc in the tmp folder.

## Built With
Expand Down Expand Up @@ -81,7 +81,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
### Session based API Communication

```java
import net.ispapi.apiconnector.*;
import net.hexonet.apiconnector.*;

// perform an api login and create an api session
Map<String, String> cfg = new HashMap<String, String>();
Expand Down Expand Up @@ -124,7 +124,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
### Sessionless API Communication

```java
import net.ispapi.apiconnector.*;
import net.hexonet.apiconnector.*;

// perform an api login and create an api session
Map<String, String> cfg = new HashMap<String, String>();
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<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>net.ispapi.apiconnector</groupId>
<artifactId>ispapi-lib-java</artifactId>
<groupId>net.hexonet.apiconnector</groupId>
<artifactId>java-sdk</artifactId>
<version>1.3.12-SNAPSHOT</version>

<name>ispapi-lib-java</name>
<url>http://1api.de</url>
<name>java-sdk</name>
<url>http://hexonet.net</url>
<scm>
<connection>scm:git:ssh://git@gitlab.hexonet.net:44447/hexonet-middleware/ispapi-lib-java.git</connection>
<developerConnection>scm:git:ssh://git@gitlab.hexonet.net:44447/hexonet-middleware/ispapi-lib-java.git</developerConnection>
<connection>scm:git:https://github.com/hexonet/java-sdk</connection>
<developerConnection>scm:git:https://github.com/hexonet/java-sdk</developerConnection>
<tag>v1.1</tag>
</scm>

Expand All @@ -31,15 +31,15 @@
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>ispapi-lib-java-releases</id>
<name>ispapi-lib-java releases</name>
<id>java-sdk-releases</id>
<name>java-sdk releases</name>
<url>file:///tmp</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>true</uniqueVersion>
<id>ispapi-lib-java-snapshots</id>
<name>ispapi-lib-java snapshots</name>
<id>java-sdk-snapshots</id>
<name>java-sdk snapshots</name>
<url>file:///tmp</url>
<layout>default</layout>
</snapshotRepository>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.Map;
import java.util.HashMap;
Expand All @@ -12,7 +12,7 @@

/**
* Client is the entry point class for communicating with the
* insanely fast 1API backend api.
* insanely fast HEXONET backend api.
* It allows two ways of communication:
* <ul>
* <li>session based communication</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.Map;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.ArrayList;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.Map;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.Map;
import static org.junit.Assert.assertEquals;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.ArrayList;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.ispapi.apiconnector;
package net.hexonet.apiconnector;

import java.util.ArrayList;
import static org.junit.Assert.assertEquals;
Expand Down

0 comments on commit 85efb14

Please sign in to comment.