-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
80 changed files
with
1,170 additions
and
729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,5 @@ | |
/bin | ||
.idea/ | ||
classes/ | ||
libs/FoxLib-1.8.9-0.8.2.jar | ||
|
||
/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,40 @@ | ||
Tails | ||
===== | ||
|
||
# Tails | ||
A small mod that adds in a variety of tails | ||
|
||
Submitted PR's | ||
===== | ||
# Build and setup | ||
The standard build task will generate a shaded and non shaded version, with the non shaded having the `nonshaded` classifier | ||
Before it can be built however, a workspace must be setup. | ||
|
||
### Workspace | ||
To setup a workspace for general develop run `gradle setupDecompWorkspace` | ||
This will automatically download all required dependencies | ||
|
||
To setup a workspace for CI building, run `gradle setupCIWorkspace` | ||
|
||
### Building | ||
The standard build can be run by running `gradle build` which will output a shaded and nonshaded jar including sources. | ||
|
||
To only generate a `nonshaded` jar, run `gradle reobfJar` | ||
To generate only a `sources` jar, run `gradle sourcejar` | ||
To generate only a `shaded` jar, run `gradle reobfShadowJar` | ||
|
||
# Maven | ||
A maven repository is available at http://maven.foxes.rocks/ | ||
|
||
To include this as a dependency in your project, add the following replacing `<version>` with the version you want. | ||
``` | ||
repositories { | ||
maven { | ||
name = 'Kihira Maven' | ||
url = 'http://maven.foxes.rocks' | ||
} | ||
} | ||
dependencies { | ||
deobfCompile "uk.kihira.tails:Tails:<version>:nonshaded" | ||
} | ||
``` | ||
|
||
# Submitted PR's | ||
I use a git flow system so master is used for releases, develop for development etc. You can read more about it [here](http://nvie.com/posts/a-successful-git-branching-model/) or a quick cheatsheet [here](https://danielkummer.github.io/git-flow-cheatsheet/) | ||
|
||
Basically if you want to submit a language patch, submit it against the develop branch. Read [here](https://help.github.com/articles/using-pull-requests#changing-the-branch-range-and-destination-repository) on how to change branches when submitting a PR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
shouldShade = true |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Tue Dec 22 15:56:52 GMT 2015 | ||
#Mon Jul 11 14:44:04 BST 2016 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.