Skip to content

Commit

Permalink
Merge pull request #4 from agilie/bintray
Browse files Browse the repository at this point in the history
Merge branch bintray into master
  • Loading branch information
ukevgen authored Jun 28, 2017
2 parents a5f305a + 30d892c commit 959f010
Show file tree
Hide file tree
Showing 14 changed files with 47 additions and 50 deletions.
4 changes: 2 additions & 2 deletions AGMobileGiftInterface-Example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
testCompile 'junit:junit:4.12'
// Kotlin
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// AGMobileGift
compile 'com.agilie.agmobilegift:AGMobileGiftInterface:0.0.1'
// MobileGift
compile 'com.agilie:mobile-gift:1.0'

}
37 changes: 0 additions & 37 deletions AGMobileGiftInterface/install.gradle

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ We made example to congratulate the use on the day of Easter.

Add dependency in your `build.gradle` file:
````
compile 'com.agilie.agmobilegift:AGMobileGiftInterface:0.0.1'
compile 'com.agilie:mobile-gift:1.0'
````

### Maven
Add rependency in your `.pom` file:
````
<dependency>
<groupId>com.agilie.agmobilegift</groupId>
<artifactId>AGMobileGiftInterface</artifactId>
<version>0.0.1</version>
<groupId>com.agilie</groupId>
<artifactId>mobile-gift</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>
````
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.jfrog.bintray'

version = '0.0.1' //YOUR LIBRARY VERSION
version = '1.0' //YOUR LIBRARY VERSION

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
Expand Down Expand Up @@ -32,12 +32,13 @@ bintray {

configurations = ['archives']
pkg {
repo = 'Agilie-Team'
name = 'AGMobileGift' //YOUR PACKAGE NAME
repo = 'maven'
name = 'MobileGift' //YOUR PACKAGE NAME
userOrg = 'agilie'
desc = 'This library simplifies interaction with GIF images' // YOUR LIBRARY DESCRIPTION
websiteUrl = 'https://github.com/agilie/AGMobileGift' // YOUR SITE
vcsUrl = 'https://github.com/agilie/AGMobileGift.git' // YOUR GIT REPO
licenses = ["Apache-2.0"] // A LIST OF YOUR LICENCES
websiteUrl = 'https://github.com/agilie/MobileGift' // YOUR SITE
vcsUrl = 'https://github.com/agilie/MobileGift.git' // YOUR GIT REPO
licenses = ["MIT"] // A LIST OF YOUR LICENCES
publish = true
publicDownloadNumbers = true
}
Expand Down
File renamed without changes.
33 changes: 33 additions & 0 deletions mobile-gift/install.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.agilie' // CREATE A GROUP ID FOR YOUR LIBRARY

install {
repositories.mavenInstaller {
pom {
project {
packaging 'mobile-gift'
groupId 'com.agilie' // CREATE A GROUP ID FOR YOUR LIBRARY
artifactId 'mobile-gift' // THE NAME OF YOUR MODULE

name 'MobileGift' // YOUR LIBRARY NAME
description 'This library simplifies interaction with GIF images' // YOUR LIBRARY DESCRIPTION
url 'https://github.com/agilie/AGMobileGift' // YOUR SITE

licenses {
license {
name 'MIT'
}
}
developers {
developer {
}
}
scm {
connection 'https://github.com/agilie/MobileGift.git' // YOUR GIT REPO
developerConnection 'https://github.com/agilie/MobileGift.git' // YOUR GIT REPO
url 'https://github.com/agilie/MobileGift' // YOUR SITE
}
}
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':AGMobileGiftInterface-Example', ':AGMobileGiftInterface'
include ':AGMobileGiftInterface-Example', ':mobile-gift'

0 comments on commit 959f010

Please sign in to comment.