Microsoft TFS SDK gradle - gradle

I would like to include the Microsoft TFS SDK jar into gradle build
I tried multiple example based on different blogs
In my project dependency I have tried below dependency:
compile "com.microsoft.tfs:sdk:14.0.2"
compile "com.microsoft.tfs:tfssdk:14.0.2"
compile "com.microsoft.tfs:tsf-sdk:14.0.2"
But non of them are working.
Please let me know if we have any support for TFS SDK jar in gradle.

Related

build android using gradle and cpp-libraray

I want to build android libs (.a and .so) using gradle using cpp-library plugin.
I search a bit and checked ndk samples. at least ndk samples are using cmake as backend and old model which seems to be removed in gradle 8.0
does have someone experience? are there any ways to implement it?

Android Studio app.gradle error in appcompat

Dependencies using groupId com.android.support and androidx.* can not be combined but found
IdeMavenCoordinates{myGroupId='com.android.support',
myArtifactId='support-vector-drawable', myVersion='26.1.0',
myPacking='aar', myClassifier='null'}and
IdeMavenCoordinates{myGroupId='androidx.asynclayoutinflater',
myArtifactId='asynclayoutinflater', myVersion='1.0.0',
myPacking='aar', myClassifier='null'}
incompatible dependencies
There seems to be a conflict between the deprecated appcompat library and Firebase
Solved the same issue by migrating the old and deprecated appcompat support library to the new androidx. Official docs here: https://developer.android.com/jetpack/androidx/migrate
I've faced the same error for a few days and only achieve success after migrating all project to SDK 28.
Update all project dependencies
File -> Project Structure
With Android Studio 3.2 and higher, go to menu Refactor -> Migrate to
AndroidX
It's worth mentioning without Migrating to AndroidX, the Gradle has been synced successfully, but when running the project I've got this error
Manifest merger failed: Attribute application#appComponentFactory...

How do I update my library version in maven central?

I deployed my library to maven central via sonatype. The library is released and I can access it from gradle. This is a library for Android, and I deployed it from Android Studio.
Recently, I updated some code and added new features to the library, so I want to update the library on Maven Central as well, but I couldn't find any info or guide on how to do it.
Should I just update version in the gradle.properties file and upload the library again via gradle uploadArchives?

FontAwesomeFX Without Maven

I am trying to use the FontAwesomeFX library in my non-Maven project. However, it seems Maven is the only way the developer has chosen to provide the latest version of the library (9.1.2).
How do I get this imported into my IntelliJ IDEA project? The 9.1.2 version is not in the Maven repositories...
I have never used Maven, so I wouldn't know where to start.

Javadoc for sonar-plugin-api 4.5.2

For the development of my own SonarQube plugin, I am searching for the javadoc (api) of sonar-plugin-api-4.5.2, but I didn't find it on the internet. For the versions 3.x.x maven also downloaded the sources of the jar and so i was able to generate the javadoc out of it. But for the version 4.5.2 of sonar-plugin-api the sources are not part of the maven repository.
So my questions are:
Is there a javadoc/api for version 4.5.2 of sonar-plugin-api available online?
Or where can I get the source of the version 4.5.2 so that i can generate the javadoc?
Javadoc for all SonarQube versions can be found here: http://javadocs.sonarsource.org
And just a reminder: SonarQube is an open-source project, you can easily find on its website that its source are freely available on its GitHub repository: https://github.com/SonarSource/sonar

Resources