# Artifactory

Published articles for Artifactory.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Using GitHub Workflow with Maven dependencices from a private GitHub Package Registry

DevFeed: [Using GitHub Workflow with Maven dependencices from a private GitHub Package Registry](<https://devfeed.tech/articles/using-github-workflow-with-maven-dependencices-from-a-private-github-package-registry-29331.md>)

Original publisher: [Read original article](<https://www.schakko.de/2020/12/19/using-github-workflow-with-maven-dependencies-from-a-private-github-package-registry/>)

Author: Schakko

Published: 2020-12-19T11:08:46Z

Content type: tutorial

Language: en

Sources: [Schakko](<https://devfeed.tech/sources/schakko.md>)

Topics: [GitHub](<https://devfeed.tech/topics/github.md>), [Maven](<https://devfeed.tech/topics/maven.md>), [GitHub Actions](<https://devfeed.tech/topics/github-actions.md>), [CI/CD](<https://devfeed.tech/topics/cicd.md>)

Tags: [artifactory](<https://devfeed.tech/tags/artifactory.md>), [automated](<https://devfeed.tech/tags/automated.md>), [build](<https://devfeed.tech/tags/build.md>), [ci-cd](<https://devfeed.tech/tags/ci-cd.md>), [dependencies](<https://devfeed.tech/tags/dependencies.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [github](<https://devfeed.tech/tags/github.md>), [github-actions](<https://devfeed.tech/tags/github-actions.md>), [library](<https://devfeed.tech/tags/library.md>), [maven](<https://devfeed.tech/tags/maven.md>), [personal-access-token](<https://devfeed.tech/tags/personal-access-token.md>), [project](<https://devfeed.tech/tags/project.md>), [registry](<https://devfeed.tech/tags/registry.md>), [repository](<https://devfeed.tech/tags/repository.md>), [sonatype](<https://devfeed.tech/tags/sonatype.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

### AI overview

A tutorial on publishing Maven artifacts to a private GitHub Package Registry using GitHub Actions. It explains the Maven distribution-management setup, Personal Access Token requirements, local testing, and workflow configuration for automated deployment.

### Source excerpt

GitHhub Package Repository provides an easy way to share dependencies like Maven artifacts between GitHub projects. Publishing of new artifacts into GitHub Package Repository can be automated with GitHub Actions. In May 2019 GitHub introduced the GitHub Package Registry: an alternative to some traditional package registries like Sonatype Nexus. During [...] The post Using GitHub Workflow with Maven dependencices from a private GitHub Package Registry appeared first on schakko.de.

## Using Artifactory for Android library dependencies and Maven repository management

DevFeed: [Using Artifactory for Android library dependencies and Maven repository management](<https://devfeed.tech/articles/getting-the-most-out-of-artifactory-28639.md>)

Original publisher: [Read original article](<https://jeroenmols.com/blog/2015/08/13/artifactory2/>)

Author: info@jeroenmols.com (Jeroen Mols)

Published: 2015-08-13T00:00:00Z

Content type: tutorial

Language: en

Sources: [Jeroen Mols](<https://devfeed.tech/sources/jeroen-mols.md>)

Topics: [Maven](<https://devfeed.tech/topics/maven.md>), [Android Library](<https://devfeed.tech/topics/android-library.md>), [Library](<https://devfeed.tech/topics/library.md>), [passwords](<https://devfeed.tech/topics/passwords.md>), [GitHub](<https://devfeed.tech/topics/github.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [android-library](<https://devfeed.tech/tags/android-library.md>), [artifactory](<https://devfeed.tech/tags/artifactory.md>), [blogs](<https://devfeed.tech/tags/blogs.md>), [github](<https://devfeed.tech/tags/github.md>), [library](<https://devfeed.tech/tags/library.md>), [maven](<https://devfeed.tech/tags/maven.md>), [password](<https://devfeed.tech/tags/password.md>), [tools](<https://devfeed.tech/tags/tools.md>)

### AI overview

A tutorial on extending a private Maven repository with Artifactory for Android projects. It covers library dependencies, secure credentials, snapshot and release builds, custom repositories, and user access, including how to package required dependencies to avoid runtime crashes.

### Source excerpt

My previous blog post described how to set up your own private Maven repository with Artifactory in 30 minutes. This second and final part will make things more interesting and take your setup to the next level.

## A private Maven repository for Android in 30 min

DevFeed: [A private Maven repository for Android in 30 min](<https://devfeed.tech/articles/a-private-maven-repository-for-android-in-30-min-28638.md>)

Original publisher: [Read original article](<https://jeroenmols.com/blog/2015/08/06/artifactory/>)

Author: info@jeroenmols.com (Jeroen Mols)

Published: 2015-08-06T00:00:00Z

Content type: tutorial

Language: en

Sources: [Jeroen Mols](<https://devfeed.tech/sources/jeroen-mols.md>)

Topics: [Maven](<https://devfeed.tech/topics/maven.md>), [Gradle](<https://devfeed.tech/topics/gradle.md>), [Android](<https://devfeed.tech/topics/android.md>), [Android Library](<https://devfeed.tech/topics/android-library.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [android-library](<https://devfeed.tech/tags/android-library.md>), [artifactory](<https://devfeed.tech/tags/artifactory.md>), [blogs](<https://devfeed.tech/tags/blogs.md>), [gradle](<https://devfeed.tech/tags/gradle.md>), [installation](<https://devfeed.tech/tags/installation.md>), [java-8](<https://devfeed.tech/tags/java-8.md>), [library](<https://devfeed.tech/tags/library.md>), [maven](<https://devfeed.tech/tags/maven.md>), [maven-repository](<https://devfeed.tech/tags/maven-repository.md>), [tools](<https://devfeed.tech/tags/tools.md>)

### AI overview

A tutorial explains how to set up a private Maven repository with Artifactory and configure Gradle to upload Android library artifacts. It covers repository-manager setup, Java SDK 8 prerequisites, Artifactory installation, and Gradle configuration.

### Source excerpt

Setting up your own Maven repository and uploading artifacts to it is quite a daunting task. As I went through this experience myself recently, I want to help others in setting up their own Maven repository via Artifactory and automate uploading artifacts using Gradle.