Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/warnyul/artifactory-plugin-android-test
artifactory and android-maven-publish plugin compatibility check
https://github.com/warnyul/artifactory-plugin-android-test
android android-maven-publish artifactory
Last synced: about 1 month ago
JSON representation
artifactory and android-maven-publish plugin compatibility check
- Host: GitHub
- URL: https://github.com/warnyul/artifactory-plugin-android-test
- Owner: warnyul
- Created: 2018-04-25T15:58:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T10:04:33.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T15:51:42.498Z (3 months ago)
- Topics: android, android-maven-publish, artifactory
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# artifactory and android-maven-publish plugin compatibility check
[![Build Status](https://travis-ci.org/warnyul/artifactory-plugin-test.svg?branch=master)](https://travis-ci.org/warnyul/artifactory-plugin-test)
This repository contains a non working sample, when use `artifactory` plugin with the `android-maven-publish` plugin.
The `android-maven-publish` does not find the `releaseApiElements` and `releaseRuntimeElements` configuration when the `artifactory` plugin tries to collect maven publications in configuration phase.
## Sample configuration
```groovy
apply plugin: 'com.android.library'
apply plugin: 'digital.wup.android-maven-publish'
apply plugin: 'com.jfrog.artifactory'android {
// Android library plugin configuration
// ...
}dependencies {
// List of dependencies
// ...
}publishing {
publications {
testArtifact(MavenPublication) {
from components.android
}
}
}```