Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from mike-n-jordan/5.18.0-patch-1
Browse files Browse the repository at this point in the history
Remove signage info
  • Loading branch information
mike-n-jordan authored Feb 7, 2022
2 parents d115599 + 623847d commit acceed6
Showing 1 changed file with 0 additions and 62 deletions.
62 changes: 0 additions & 62 deletions mopub-sdk/publisher.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@
// https://www.mopub.com/legal/sdk-license-agreement/

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'signing'

def siteUrl = 'https://github.com/badoo/mopub-android-sdk'
def gitUrl = 'https://github.com/badoo/mopub-android-sdk.git'
def issuesUrl = 'https://github.com/mopub/mopub-android-sdk/issues'
def bintrayRepo = 'mopub-android-sdk'
def bintrayUserOrg = 'badoo'
// Put your credentials (bintray.user, bintray.apikey) in ~/.gradle/gradle.properties

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
Expand All @@ -21,56 +12,3 @@ task sourcesJar(type: Jar) {
artifacts {
archives sourcesJar
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = project.group
artifactId = project.ext.projectName
version = project.version

pom {
name = project.ext.displayName
description = project.description
url = 'https://developers.mopub.com/publishers/'

licenses {
license {
name = 'MoPub SDK License Agreement'
url = 'https://www.mopub.com/legal/sdk-license-agreement/'
}
}
developers {
developer {
id = 'mopub'
name = 'MoPub (a division of Twitter, Inc.)'
url = 'https://www.mopub.com'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://' + gitUrl
developerConnection = 'scm:git:ssh://' + gitUrl
url = siteUrl
}
}
}
}
repositories {
maven {
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username = project.hasProperty("maven.user") ? project.getProperty("maven.user") : ""
password = project.hasProperty("maven.pass") ? project.getProperty("maven.pass") : ""
}
}
}
}

signing {
sign publishing.publications.release
}
}

0 comments on commit acceed6

Please sign in to comment.