forked from videolan/vlc-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicolas Pomepuy
committed
Apr 13, 2021
1 parent
6a5af92
commit 2cd00b6
Showing
9 changed files
with
96 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,64 +28,4 @@ task javadocJar(type: Jar, dependsOn: javadoc) { | |
artifacts { | ||
archives javadocJar | ||
archives sourcesJar | ||
} | ||
|
||
install { | ||
group = 'publishing' | ||
repositories.mavenInstaller { | ||
// This generates POM.xml with proper parameters | ||
pom.project { | ||
packaging 'aar' | ||
artifactId lib_artifact | ||
name repoName | ||
description libraryDescription | ||
url 'https://code.videolan.org/videolan/vlc-android/' | ||
|
||
licenses { | ||
license { | ||
name licenseName | ||
url licenseUrl | ||
} | ||
} | ||
developers { | ||
developer { | ||
id 'videolan' | ||
name 'VideoLAN' | ||
email '[email protected]' | ||
} | ||
} | ||
scm { | ||
connection gitUrl | ||
developerConnection gitUrl | ||
url siteUrl | ||
} | ||
} | ||
} | ||
} | ||
|
||
apply plugin: 'com.jfrog.bintray' | ||
|
||
Properties properties = new Properties() | ||
properties.load(project.rootProject.file('local.properties').newDataInputStream()) | ||
bintray { | ||
user = System.getenv('K8S_SECRET_BINTRAY_USER') ?: properties.getProperty("bintray.user") | ||
key = System.getenv('K8S_SECRET_BINTRAY_KEY') ?: properties.getProperty("bintray.apikey") | ||
configurations = ['archives'] | ||
pkg { | ||
repo = repoName | ||
name = libraryName | ||
desc = libraryDescription | ||
websiteUrl = siteUrl | ||
issueTrackerUrl = 'https://code.videolan.org/videolan/vlc-android/issues' | ||
licenses = allLicenses | ||
vcsUrl = gitUrl | ||
labels = ['aar', 'android', 'vlc'] | ||
dryRun = false | ||
override = true | ||
publicDownloadNumbers = true | ||
version { | ||
desc = libraryDescription | ||
} | ||
} | ||
publish = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# ************************************************************************* | ||
# gradle.properties | ||
# ************************************************************************** | ||
# Copyright © 2021 VLC authors and VideoLAN | ||
# Author: Nicolas POMEPUY | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. | ||
# *************************************************************************** | ||
# | ||
# | ||
# | ||
|
||
GROUP=org.videolan.android | ||
POM_ARTIFACT_ID=libvlc-all | ||
|
||
|
||
POM_NAME=LibVLC-Android | ||
POM_DESCRIPTION=Android bindings and API for VLC | ||
POM_INCEPTION_YEAR=2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# ************************************************************************* | ||
# gradle.properties | ||
# ************************************************************************** | ||
# Copyright © 2021 VLC authors and VideoLAN | ||
# Author: Nicolas POMEPUY | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. | ||
# *************************************************************************** | ||
# | ||
# | ||
# | ||
|
||
GROUP=org.videolan.android | ||
POM_ARTIFACT_ID=medialibrary-all | ||
|
||
|
||
POM_NAME=Medialibrary-Android | ||
POM_DESCRIPTION=Android bindings and API for Medialibrary | ||
POM_INCEPTION_YEAR=2021 |