Re: AW: Is it possible to search maven site?

2017-07-14 Thread Jim Klo
control over indexing. Also if you want to be indexed on a regular schedule you'll need to register your sitemap.xml with Google using the Webmaster Tools. Jim Klo Senior Software Engineer SRI International t: @nsomnac On Jul 14, 2017, at 12:43 AM, "g.h...@aurenz.de<mailto:g.h...@aurenz.de

Re: Maven password encryption by project

2017-03-17 Thread Jim Klo
As others have mentioned, you shouldn’t be storing passwords in a POM. I as well don’t have a great corporate solution that works for secrets management for maven. My solution has been to use Environment Variables - which basically follows the same pattern that AWS, Docker, Vagrant and

Re: Overriding a profile in a child POM

2017-02-22 Thread Jim Klo
-profiles should show the inverse. Jim Klo Senior Software Engineer Center for Software Engineering SRI International t. @nsomnac > On Feb 22, 2017, at 11:14 AM, Shahim Essaid <sha...@essaid.com> wrote: > > Hi, > > I tested the possibility of overriding a profile in

Re: building platform specific eclipse RCP plugins

2016-10-13 Thread Jim Klo
I’m not sure I fully follow what’s going on, however I’m not sure what you want to do can be easily done in a single reactor build. It can possibly be done, but you’d need break things into a lot of modules. My first question is are you building features that are OS specific or agnostic? Are

Re: If a repository has no metadata

2016-07-27 Thread Jim Klo
Depends upon how you are using the repo. AFAIK, maven won't be able to determine the latest Snapshot or Release version of an artifact as that's stored in the metadata. Jim Klo Senior Software Engineer SRI International t: @nsomnac On Jul 27, 2016, at 6:42 AM, Benson Margulies <bimar

maven-assembly-plugin mysterious error

2016-05-06 Thread Jim Klo
receive a NullPointerError referencing the TarArchiver.cleanup() line 494, and no other aid as to indicate what might be wrong. Can anyone provide any insight as to what might be going wrong, how I might better debug, etc? The full execution log + error is below my sig. Thanks, - JK Jim Klo

Re: License Auditing

2015-10-06 Thread Jim Klo
manage licensing at the artifact level (source and binaries) not really the individual file level. Both seem to rely upon a license declaration to be present for each module and not necessarily look at the individual license headers within source files. Jim Klo Senior Software Engineer Center

Re: License Auditing

2015-10-05 Thread Jim Klo
t benefit to the > Maven community. > > Regards, > Curtis > > On Mon, Sep 28, 2015 at 11:13 AM, Jim Klo <jim@sri.com> wrote: > >> Hi, >> >> Looking for some guidance on doing some source license auditing. My needs >> are two fold. I n

License Auditing

2015-09-28 Thread Jim Klo
icense-maven-plugin/examples/example-thirdparty.html <http://www.mojohaus.org/license-maven-plugin/examples/example-thirdparty.html> Thanks, JK Jim Klo Senior Software Engineer Center for Software Engineering SRI International t. @nsomnac smime.p7s Description: S/MIME cryptographic signature

Re: AW: Help needed with a strange fixed filename

2015-06-09 Thread Jim Klo
first dependency in a tycho build in a single reactor build. In my case the jar file needs to be a specific name so the manifest build can locate the right dependency. Jim Klo Senior Software Engineer SRI International t: @nsomnac On Jun 8, 2015, at 10:51 PM, Thomas Klöber thomas.kloe

Re: Apache Maven ANT - VPAT

2015-04-23 Thread Jim Klo
Actually there may be some relevance. There are some services that could be used to automate 508 and other A11y compliance. For example, you could execute a workflow during the test phase that validates content against the IDI Web Accessibility Checker (http://achecker.ca/checker/index.php

Re: Adding comments to dependencies in POM

2015-04-20 Thread Jim Klo
Comments inline below.. On Apr 20, 2015, at 10:44 AM, Ron Wheeler rwhee...@artifact-software.com wrote: RDF sounds like overkill. There is no reason why a comment could not be a URI but I am not sure that you want to mandate that. Use Case 1 link to web resource dependency

Re: Adding comments to dependencies in POM

2015-04-20 Thread Jim Klo
On Apr 20, 2015, at 2:38 PM, Ron Wheeler rwhee...@artifact-software.com wrote: On 20/04/2015 4:55 PM, Jim Klo wrote: Comments inline below.. On Apr 20, 2015, at 10:44 AM, Ron Wheeler rwhee...@artifact-software.com mailto:rwhee...@artifact-software.com mailto:rwhee...@artifact

Re: Can Maven be used in an nmake environment with VPATH?

2015-04-01 Thread Jim Klo
Is there a reason you cannot just use the exec plugin? We use that to manage all sorts of esoteric make-like systems the have similar problems as you list. Jim Klo Senior Software Engineer SRI International t: @nsomnac On Mar 31, 2015, at 12:24 PM, Steve Cohen stevec

Re: Can Maven be used in an nmake environment with VPATH?

2015-04-01 Thread Jim Klo
, and the jar plugin, to use the vpath. Basically, you're just writing a new SourceInclusionScanner. This seems like it would have the benefit of staying within known Maven channels. On 04/01/2015 10:23 AM, Jim Klo wrote: Is there a reason you cannot just use the exec plugin? We use