Where to find SvnClientAdapter related artifacts to include in a pom file? #41
Replies: 4 comments 5 replies
-
It should be. It is just a Bintray feature and it was created as a Maven repository. Go here, and click the Set Me Up button. https://bintray.com/subclipse/maven/svnclientadapter There is more to do than just update your pom.xml.
Honestly, it has never really been maintained, it is just something we use in Subclipse. I never setup any build automation for this repository and guess I never published a 1.14. I recall all I did is relax the version checks so that the same JAR can work with SVN 1.12-1.14. Mark |
Beta Was this translation helpful? Give feedback.
-
Yes, as I said, when doing the plugin it worked fine using dependencies to Subclipse. It was when I wanted to use similar code from a standalone java app, built with Maven, I got issues trying to fetch the jars as dependencies in the pom. Anyway, thanks for your answers. I'll have a look at the "set me up" button. |
Beta Was this translation helpful? Give feedback.
-
I have not done anything with them but they have never really been used by
anyone and none of this is really what one could call maintained.
That said, I have this vague recollection that the GitHub Maven
repositories do not support anonymous access so you have to authenticate to
use them?
https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry
401 is an authentication challenge so that lines up.
Mark
…On Sat, Jul 9, 2022 at 12:40 PM Chris Leonard ***@***.***> wrote:
Hey Mark,
Are these repos still active?
https://maven.pkg.github.com/subclipse/svnclientadapter
https://maven.pkg.github.com/subclipse/javahl
I downloaded the project and tried to build it, but when downloading
dependencies from the https://maven.pkg.github.com/subclipse/javahl, I
get 401 errors. Should they be removed from the pom files?
—
Reply to this email directly, view it on GitHub
<#41 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHDZ5FBHWN4BWD5HJ7TCQLVTGTQJANCNFSM4WCOFOAQ>
.
You are receiving this because you commented.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
We just never used Maven ourselves back when we worked on this |
Beta Was this translation helpful? Give feedback.
-
Hi
I am using the SvnClientAdapter for accessing an SVN repository from a java application. I was looking at the SvnClientAdapter sample code in GitHub (https://github.com/subclipse/svnclientadapter/tree/master/samples), and in that sample code, in the pom file, there is a reference to a repository where the dependency artifacts are located, i.e.:
<repositories>
_<repository>
__<id>bintray-subclipse-maven</id>
__<name>bintray</name>
__<url>http://dl.bintray.com/subclipse/maven</url>
_</repository>
</repositories>
I can manually find the artifacts using the referenced URL through a web browser, but not through Maven having the above in my pom file. Is it a valid Maven repository? Or are the SvnClientAdapter artifacts supposed to be found in another location? I was able to manually download the jars and include them in my pom as local system dependencies but I would prefer have them fetched from a Maven repo.
I can see that this particular code has not been touched for 4 years, but other parts of the code seem to at least have been touched 9 months ago updating it to SVN 1.14.0. However the latest artifact found in the repository mentioned above is 1.12.0. Is the artifact repository still maintained or should it be considered deprecated?
Beta Was this translation helpful? Give feedback.
All reactions