I am coding a Java project and I'm automating the build and the publishing to JFrog Artifactory using SBT.
Whenever it's time to publish to Artifactory I want to do it using the Ivy directory layout and obviously publish the Ivy XML file along with the jar. I managed to achieve this by using the following lines in the build.sbt file:
crossPaths
it1352
3
2020-09-07
I'm trying to get to the Artifactory Gradle plugin working to publish to my local Artifactory instance.
I have the latest version (default install) running at localhost:8081/artifactory. I can verify this with access via a webbrowser.
However, with my bare minimum example .. I am getting a "Context URL cannot be found error
Note that I have spe
it1352
8
2019-05-19
My organization uses JFROG artifactory for distribution of all jars.
So far I have always used SBT for my Scala development. But now when i am searching for ways to publish jars built by SBT into JFROG artifactory, I only find this plugin on github which is in "alpha" state
https://github.com/JFrogDev/artifactory-sbt-plugin
I want to know if thi
it1352
1
2020-09-07
So basically I am trying to download packages from https://registry.npmjs.org/ using npm install, but I am under a proxy.
I have set-up a remote repository that will hit (above link) and cache using artifactory, so that I can pull locally, but it does not seem to work.
Followed these directions: http://www.jfrog.com/confluence/display/RTF/Npm Rep
it1352
1
2020-09-07
I have a requirement where any file should be put in the artifact using python language. I tried to search all over internet but I couldn't find any help.
Please share code snippet or something which can help me to achieve this.
Any help is greatly appreciated here.
Solution Artifactory python module can be used to upload artifacts into artifact
it1352
2
2020-09-07
I need to get both Maven and SBT to use local Artifactory-server which is only machine that has Internet connection. Servers, CI-machine, etc don't have access to outside world.
I'm getting grey hair with SBT especially.
SBT Problems connecting to Artifactory
With 0.11.[0..3] I can SBT to access Artifactory via following:
Unzip sbt-launcher.j
it1352
2
2020-09-07
My gradle version is 2.2.1.
I am trying to use the artifactory plugin in gradle (apply plugin: 'artifactory')
This is my code:
buildscript {
repositories {
maven {
url 'http://172.14.3.93/artifactory/plugins-release'
}
}
dependencies {
classpath(group: 'org.jfrog.buildinfo', name: 'build-info-ext
it1352
26
2019-05-15
Deploy programatically created KIE-Drools-Artifact to Maven repository has come closest to what I'm trying to do.
I have artifactory set up as a remote repository for a project, and what I want to do is deploy snapshot releases to the libs-shapshot-local repository from one project so that they can be accessed via others.
As for my code, I'm wo
it1352
1
2020-09-07
Our setup includes a company wide Artifactory that holds in-house-built artifacts as well as goes out and fetches publicly available artifacts. I’m trying to setup a local Artifactory at our location that would fetch publicly available artifacts through the regular internet, but would connect to the company wide Artifactory for our in-house-built a
it1352
2
2020-09-07
I tried to set up artifactory as docker registry as shown in this video: http://www.jfrog.com/video/artifactory-docker-integration/
However, I don't have SSL installed in artifactory so I'm using the --insecure-registry flag. (as shown in error in docker build publish plugin and Remote access to a private docker-registry)
Anyway, I don't know
it1352
1
2019-05-15