Skip to content

Commit 19bd9e6

Browse files
committed
Initial commit
0 parents  commit 19bd9e6

File tree

5 files changed

+122
-0
lines changed

5 files changed

+122
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.classpath
2+
.project
3+
.settings/
4+
target/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Julian Hofmann
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Java-Client
2+
![CodeGame Version](https://img.shields.io/badge/CodeGame-v0.7-orange)
3+
![Target](https://img.shields.io/badge/Framework-.Net%206-blue)
4+
5+
The Java client library for [CodeGame](https://code-game.org).
6+
7+
## License
8+
9+
MIT License
10+
11+
Copyright (c) 2022 Julian Hofmann
12+
13+
Permission is hereby granted, free of charge, to any person obtaining a copy
14+
of this software and associated documentation files (the "Software"), to deal
15+
in the Software without restriction, including without limitation the rights
16+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17+
copies of the Software, and to permit persons to whom the Software is
18+
furnished to do so, subject to the following conditions:
19+
20+
The above copyright notice and this permission notice shall be included in all
21+
copies or substantial portions of the Software.
22+
23+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29+
SOFTWARE.

pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.codegame</groupId>
8+
<artifactId>client</artifactId>
9+
<version>0.1.0</version>
10+
11+
<name>CodeGame Client</name>
12+
<url>https://code-game.org</url>
13+
14+
<properties>
15+
<maven.compiler.release>11</maven.compiler.release>
16+
</properties>
17+
18+
<dependencies>
19+
</dependencies>
20+
21+
<build>
22+
<pluginManagement>
23+
<plugins>
24+
<plugin>
25+
<artifactId>maven-clean-plugin</artifactId>
26+
<version>3.2.0</version>
27+
</plugin>
28+
<plugin>
29+
<artifactId>maven-resources-plugin</artifactId>
30+
<version>3.3.0</version>
31+
</plugin>
32+
<plugin>
33+
<artifactId>maven-compiler-plugin</artifactId>
34+
<version>3.10.1</version>
35+
</plugin>
36+
<plugin>
37+
<artifactId>maven-jar-plugin</artifactId>
38+
<version>3.2.2</version>
39+
</plugin>
40+
<plugin>
41+
<artifactId>maven-install-plugin</artifactId>
42+
<version>3.0.1</version>
43+
</plugin>
44+
<plugin>
45+
<artifactId>maven-deploy-plugin</artifactId>
46+
<version>3.0.0</version>
47+
</plugin>
48+
<plugin>
49+
<artifactId>maven-site-plugin</artifactId>
50+
<version>3.7.1</version>
51+
</plugin>
52+
<plugin>
53+
<artifactId>maven-project-info-reports-plugin</artifactId>
54+
<version>3.4.0</version>
55+
</plugin>
56+
</plugins>
57+
</pluginManagement>
58+
</build>
59+
</project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package org.codegame.client;
2+
3+
public class GameSocket
4+
{
5+
public static void main( String[] args )
6+
{
7+
System.out.println( "Hello World!" );
8+
}
9+
}

0 commit comments

Comments
 (0)