Không có mô tả

Sam Jaffe 645ceb4cef Moving things around so that EquipItemHelper is in the controller package where it belongs, and EquipItemPanel is now in 'view.dialog' representing that it exists as a modal dialog. 8 năm trước cách đây
resources 1b66e9d013 Adding the ability to save and load favorite equipment loadouts. 8 năm trước cách đây
schema 4025ccc7a5 Adding ability scores, combining Base and Temp into a single structure, instead of existing in parallel. This will allow them to be used in concert safely. 8 năm trước cách đây
src 645ceb4cef Moving things around so that EquipItemHelper is in the controller package where it belongs, and EquipItemPanel is now in 'view.dialog' representing that it exists as a modal dialog. 8 năm trước cách đây
.gitignore 58198f0f6b Add Maven.gitignore 8 năm trước cách đây
LICENSE 7221fffdae Add Apache License. 8 năm trước cách đây
README.md b20513db54 Add eclipse usage 8 năm trước cách đây
pom.xml 6ebb52a178 Getting maven to work, finally. 8 năm trước cách đây

README.md

d20-charsheet

Building

This guide assumes the following:

  • The directory you download this project to is called 'd20-charsheet'
  • Both java and maven's bin directories are on the PATH
  • The product is named 'd20-charsheet.jar'

Tools Required

  1. Java Development Kit
  2. Maven

Build Steps

Building using Maven

Build

  1. Clone/Download this repository
  2. Open a command prompt in d20-charsheet
  3. Enter the command mvn clean package

Run

  • From the d20-charsheet directory, run the below command for your OS.
    • On Windows: java -jar target\d20-charsheet.jar
    • On OSX/Linux: java -jar target/d20-charsheet.jar

Currently, this can only be run from the 'd20-charsheet' directory!

Building using Eclipse

Build

  1. Clone/Download this repository to a directory in your Eclipse workspace
  2. Go to File > Import > Maven > Existing Maven Projects
  3. Follow the prompts to import the project
  4. Go to Run > Run Configurations and press the white page icon (New launch configuration)
  5. Select d20-charsheet as the project, and org.leumasjaffe.charsheet.Test as the main class.

Run

  • Press the green arrow icon to Run Test