Re: Server Issue

2018-09-05 Thread Basin Ilya
Hi Priya. In Eclipse go to Window > Show View > Other > Genearl > Problems The "Problems" view will appear. Find there the error and copy it. The error should contain the full stack trace explaining the problem. Sometimes the Plugin Downloader reports only the short description. In that case y

Re: "scm:git:file:///" + repo.getAbsolutePath()

2018-07-21 Thread Basin Ilya
I've just found that git ignores the ://host/ part. 21.07.2018 13:46, Michael Osipov пишет: > Am 2018-07-21 um 10:05 schrieb Basin Ilya: >> Hi. >> >> I'm looking at the commits c7a9910 & 90089a7 in maven-scm. They create an >> instance of Sc

"scm:git:file:///" + repo.getAbsolutePath()

2018-07-21 Thread Basin Ilya
Hi. I'm looking at the commits c7a9910 & 90089a7 in maven-scm. They create an instance of ScmRepository with "scm:git:file:///" + repo.getAbsolutePath() Although the resulting string is further processed, before passed to git, it doesn't conform with the format documented in https://maven

Re: [VOTE] Release Maven Wagon version 3.1.0

2018-06-07 Thread Basin Ilya
+1 BTW, I'm new here. Who can vote? 05.06.2018 0:43, Michael Osipov пишет: > Hi, > > We solved 25 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12318122&version=12341302 > > There are still a couple of issues left in JIRA: > https://issues.apache.org/jira/issues/?jq

PlexusTestCase still Junit3

2018-06-05 Thread Basin Ilya
Hi. In Maven itself and its plugins there's a deep hierarchy of test classes based on `PlexusTestCase`, which extends `junit.framework.TestCase`. Although we've been using the `Junit4` library for a long time, the actual tests are still public unannotated methods, starting with the word "test".

Re: ScmProvider.list()

2018-04-11 Thread Basin Ilya
n Connolly: >>>>> On Fri 30 Mar 2018 at 10:20, Michael Osipov >> wrote: >>>>>> Am 2018-03-30 um 10:47 schrieb Basin Ilya: >>>>>>> Hi. >>>>>>> We need your opinion on the following topic. While Svn and Cvs >&

ScmProvider.list()

2018-03-30 Thread Basin Ilya
Hi. We need your opinion on the following topic. While Svn and Cvs providers perform the list() operation remotely and don't need a checkout directory, Git and some others simply list the local files (generally, because their SCMs don't provide a remote list method). Arguments passed to the list

delayed wagon

2018-03-02 Thread Basin Ilya
Hi. Some people might be frustrated that deploying artifacts to scm puts each file in a separate commit. At least, I was and I created a maven extension that solves this: https://github.com/basinilya/wagon-delayed/ This extension overrides the default WagonProvider implementation. The

Re: Access project properties in non-plugin code

2018-02-25 Thread Basin Ilya
OtherMojo is accessible enough. > > Any other solution might become a hard fight. > > Robert > > On Sun, 25 Feb 2018 15:28:28 +0100, Basin Ilya wrote: > >> I want to add custom configuration options to a library used by a plugin >> without modifying the plugin

Access project properties in non-plugin code

2018-02-25 Thread Basin Ilya
Hi Can a plugin dependency (which is not a plugin itself) access the plugin configuration when it's called by the plugin? Or at least access the current maven project properties? Through some thread-local or static member. - To

scm/wagon-scm bugfixes

2018-02-21 Thread Basin Ilya
Hi list. I'd like to contribute a set of bugfixes in SCM and WAGON projects https://issues.apache.org/jira/browse/WAGON-501?jql=project%20in%20(SCM%2C%20WAGON)%20AND%20reporter%20in%20(basinilya) BTW, why doesn't the ASF bot post my pull requests here? --

eclipse java code formatter

2018-02-19 Thread Basin Ilya
Hi. Where can I download the formatter xml for maven projects? Aslo, I manually created the "maven_checks" checkstyle profile and extracted its config from org\apache\maven\shared\maven-shared-resources\2\maven-shared-resources-2.jar . Was it the right way?