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

Commit

Permalink
Another attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Feb 3, 2017
1 parent d901ec6 commit b64e22f
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 0 deletions.
Binary file modified .gradle/2.10/taskArtifacts/cache.properties.lock
Binary file not shown.
Binary file modified .gradle/2.10/taskArtifacts/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/2.10/taskArtifacts/fileSnapshots.bin
Binary file not shown.
Binary file modified .gradle/2.10/taskArtifacts/outputFileStates.bin
Binary file not shown.
Binary file modified .gradle/2.10/taskArtifacts/taskArtifacts.bin
Binary file not shown.
23 changes: 23 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ ext {
gdxVersion = '1.9.5'
}

task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}

dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
}
Expand All @@ -31,3 +46,11 @@ uploadArchives {
}
}
}

install {
repositories.mavenInstaller {
pom.project {

}
}
}

0 comments on commit b64e22f

Please sign in to comment.