richardwilkes/gcs


GURPS Character Sheet http://gurpscharactersheet.com

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.richardwilkes:gcs:'
	}
	dependencies {
		implementation("com.github.richardwilkes:gcs:")
	}
	<dependency>
	    <groupId>com.github.richardwilkes</groupId>
	    <artifactId>gcs</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.richardwilkes" % "gcs" % ""
        
        

                            
    :dependencies [[com.github.richardwilkes/gcs ""]]
        
        

Readme


GURPS Character Sheet

Go Reference Go Report Card

GURPS[^1] Character Sheet (GCS) is a stand-alone, interactive, character sheet editor that allows you to build characters for the GURPS Fourth Edition roleplaying game system.

GCS relies on another project of mine, Unison, for the UI and OS integration. The prerequisites are therefore the same as for that project. Once you have the prerequistes, you can build GCS by running the build script: ./build.sh. Add a -h to see available options.

[^1]: GURPS is a trademark of Steve Jackson Games, and its rules and art are copyrighted by Steve Jackson Games. All rights are reserved by Steve Jackson Games. This game aid is the original creation of Richard A. Wilkes and is released for free distribution, and not for resale, under the permissions granted in the Steve Jackson Games Online Policy.