Skip to content
This repository was archived by the owner on Feb 19, 2019. It is now read-only.

Commit f6d7986

Browse files
author
LeafHacker
committed
Move more properties into gradle.properties
- Move version, group and name - Rename gameVersion to minecraftVersion - Change name from client-api to ClientAPI - Add a description
1 parent a70f3f6 commit f6d7986

File tree

3 files changed

+7
-23
lines changed

3 files changed

+7
-23
lines changed

build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,13 @@ apply plugin: 'java'
3737
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
3838
apply plugin: 'org.spongepowered.mixin'
3939

40-
version '2.1'
41-
group 'com.github.ZeroMemes'
42-
4340
sourceCompatibility = targetCompatibility = '1.8' // Needed so Eclipse task generates correctly
4441
compileJava {
4542
sourceCompatibility = targetCompatibility = '1.8'
4643
}
4744

4845
minecraft {
49-
version = project.gameVersion
46+
version = project.minecraftVersion
5047
mappings = project.mappings
5148
tweakClass = 'me.zero.client.load.ClientTweaker'
5249
runDir = 'run'

gradle.properties

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,9 @@
1414
# limitations under the License.
1515
#
1616

17-
gameVersion = 1.12.1
18-
mappings = snapshot_20170805
17+
name = ClientAPI
18+
group = com.github.ZeroMemes
19+
description = An API to provids a shared base for writing modded clients.
20+
version = 2.1
21+
minecraftVersion = 1.12.1
22+
mappings = snapshot_20170805

settings.gradle

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)