Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
koczadly committed Apr 25, 2019
0 parents commit 0e1a1ad
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# IntelliJ
.idea/
*.iml

# Maven
target/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Java library for retrieving game state information from Counter-Strike: Global Offensive
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?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">
<modelVersion>4.0.0</modelVersion>

<groupId>uk.oczadly.karl.csgsi</groupId>
<artifactId>CSGO-GSI</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>CSGO GSI</name>
<description>Java library for retrieving game state information from Counter-Strike: Global Offensive</description>
<url>https://github.com/koczadly/csgo-gsi</url>

</project>

0 comments on commit 0e1a1ad

Please sign in to comment.