Upload runtime and spine extension to maven and jcenter

This commit is contained in:
fgnm
2020-08-07 10:52:51 +02:00
parent f8813413da
commit 10e098715c
5 changed files with 71 additions and 6 deletions
+1
View File
@@ -5,6 +5,7 @@ buildscript {
}
dependencies {
classpath 'com.badlogicgames.gdx:gdx-tools:1.9.11'
classpath 'com.novoda:bintray-release:0.9.2'
}
}
+16 -3
View File
@@ -2,12 +2,25 @@
HyperLap2D extension for libgdx runtime that adds Spine rendering support.
### Import
### Integration
You can include through gradle
#### Gradle
Release artefacts are available through [Bintray][bintray].
```groovy
dependencies {
implementation 'games.rednblack.editor:h2d-libgdx-spine-extension:0.0.1'
}
```
implementation '....'
#### Maven
```xml
<dependency>
<groupId>games.rednblack.editor</groupId>
<artifactId>h2d-libgdx-spine-extension</artifactId>
<version>0.0.1</version>
<type>pom</type>
</dependency>
```
### License
+21
View File
@@ -2,11 +2,32 @@ plugins {
id 'java'
}
apply plugin: 'com.novoda.bintray-release'
group 'games.rednblack'
version '0.0.1'
repositories {
mavenCentral()
mavenCentral()
}
publish {
def groupProjectID = 'games.rednblack.editor'
def artifactProjectID = 'h2d-libgdx-spine-extension'
def publishVersionID = '0.0.1'
userOrg = 'rednblackgames'
repoName = 'HyperLap2D'
groupId = groupProjectID
artifactId = artifactProjectID
publishVersion = publishVersionID
desc = 'HyperLap2D Spine extension for libGDX runtime'
website = 'https://github.com/rednblackgames/HyperLap2D'
}
tasks.withType(Javadoc).all {
enabled = false
}
dependencies {
+16 -3
View File
@@ -2,12 +2,25 @@
HyperLap2D runtime for libGDX framework.
### Import
### Integration
You can include through gradle
#### Gradle
Release artefacts are available through [Bintray][bintray].
```groovy
dependencies {
implementation 'games.rednblack.editor:hyperlap2d-runtime-libgdx:0.0.1'
}
```
implementation '....'
#### Maven
```xml
<dependency>
<groupId>games.rednblack.editor</groupId>
<artifactId>hyperlap2d-runtime-libgdx</artifactId>
<version>0.0.1</version>
<type>pom</type>
</dependency>
```
### Support
+17
View File
@@ -2,13 +2,30 @@ plugins {
id 'java'
}
apply plugin: 'com.novoda.bintray-release'
group 'games.rednblack'
version '0.0.1'
repositories {
jcenter()
mavenCentral()
}
publish {
def groupProjectID = 'games.rednblack.editor'
def artifactProjectID = 'hyperlap2d-runtime-libgdx'
def publishVersionID = '0.0.1'
userOrg = 'rednblackgames'
repoName = 'HyperLap2D'
groupId = groupProjectID
artifactId = artifactProjectID
publishVersion = publishVersionID
desc = 'Runtime for libGDX to render HyperLap2D projects'
website = 'https://github.com/rednblackgames/HyperLap2D'
}
dependencies {
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"