Why does maven-javadoc-plugin:javadoc execute from an aggregator POM?

2014-01-14 Thread Justin Georgeson
I'm working with a set of eclipse-plugin projects using the Tycho plugins. We are trying to embed the javadocs in the plugin jar file, with an extension point so that the Javadocs show-up inline in the IDE. Since I need the javadoc to be generated prior to the package phase, I have configured

RE: javadoc:aggregate project filter

2014-01-15 Thread Justin Georgeson
I'm in a similar environment and use profiles in my aggregator POM to specify different reactors for different things. I have a profile for a javadoc reactor which doesn't include any eclipse-feature, eclipse-test-plugin, or eclipse-repository projects (ie it only includes the projects for the

RE: OutOfMemoryError with maven-javadoc-plugin

2014-03-28 Thread Justin Georgeson
The maven-javadoc-plugin has a maxmemory configuration parameter. In my parent POM I set a default property docs.maxMemory and then configure maven-javadoc-plugin with maxmemory${docs.maxMemory}/maxmemory So each team can override that default setting in their pom.xml if they have an

MD5 checksum validation tool [Windows]?

2014-08-04 Thread Justin Georgeson
All the checksum validation tools I've found only seem to support files with format produced by the md5sum tool, ie - checksum1 relative/path/file1 checksum2 relative/path/to/file2 ... But Maven publishes sibling files of the same name with .md5 appended, and no relative path in the file. Does

RE: MD5 checksum validation tool [Windows]?

2014-08-04 Thread Justin Georgeson
, Paul On Mon, Aug 4, 2014 at 11:16 AM, Justin Georgeson jgeorge...@lgc.com wrote: All the checksum validation tools I've found only seem to support files with format produced by the md5sum tool, ie - checksum1 relative/path/file1 checksum2 relative/path/to/file2 ... But Maven

RE: MD5 checksum validation tool [Windows]?

2014-08-04 Thread Justin Georgeson
a download of Apache Tomcat. The check worked as expected. http://www.exactfile.com/ . . . just my two cents /mde/ On 8/4/2014 9:41 AM, Justin Georgeson wrote: Thanks Paul. I don't see HashTab as being able to directly read the .md5 file. Users would have to open the .md5 file

RE: MD5 checksum validation tool [Windows]?

2014-08-05 Thread Justin Georgeson
all .md5 files it ran across with optional recursion. Wayne On Mon, Aug 4, 2014 at 11:41 AM, Justin Georgeson jgeorge...@lgc.com wrote: Thanks Paul. I don't see HashTab as being able to directly read the .md5 file. Users would have to open the .md5 file in a text editor, then copy

RE: Jococo report using Jenkins without the need to configure jacoco-maven-plugin? possible?

2014-08-06 Thread Justin Georgeson
I believe you still need to configure jacoco-maven-plugin so that your tests are run with instrumentation, but you don't need to do the reporting part with maven. Jenkins will read the .exec file that Jacoco generates during test execution and publish reports from that. -Original

jarsigner plugin: specifying multiple arguments on the CLI

2014-09-11 Thread Justin Georgeson
Apologies if this has been answered before. I don't see an entry in the plugin page's FAQ and find it with a quick Google search. I am behind a proxy so in order to specify a TSA I need to use -J-Dhttp.proxyHost=host -J-Dhttp.proxyPort=port as arguments. If I use -Djarsigner.arguments=... then

deploy and include properties files along with parent POM

2014-11-06 Thread Justin Georgeson
We have an organizational parent POM deployed to Artifactory, com.lgc:master:1.0.0-SNAPSHOT. The top-level aggregator POM in each repo uses this as the parent, with relativePath/. Then the individual projects in that repo use the aggregator as the parent. In the com.lgc:master POM I would like

RE: [EXTERNAL] dependency management with ant quick question

2015-05-14 Thread Justin Georgeson
more of your suggestion here and update. Thanks On Wed, May 13, 2015 at 8:14 PM, Justin Georgeson jgeorge...@lgc.com wrote: https://maven.apache.org/ant-tasks/ 1. There is a task to resolve/retrieve dependencies. 2. The dependency task can create classpath and fileset refids

RE: [EXTERNAL] dependency management with ant quick question

2015-05-13 Thread Justin Georgeson
https://maven.apache.org/ant-tasks/ 1. There is a task to resolve/retrieve dependencies. 2. The dependency task can create classpath and fileset refids for the dependencies, and per-dependency properties, so you shouldn't have to worry about copy jars to and fro. 3. There are examples at the

RE: [EXTERNAL] Re: mvn deploy:deploy-file with same groupId artifactId but different classifiers

2015-06-29 Thread Justin Georgeson
Regardless of using Maven, I've always felt that for a multi-platform codebase, a build isn't successful/publishable/shippable if it hasn't succeeded on all required platforms (if the fix requires a change in the source code). So I've always favored the gather-and-deploy approach.

RE: [EXTERNAL] Re: Use 2 pom.xml files with different names

2015-08-10 Thread Justin Georgeson
Do you have the same groupId, artifactId, and version specified in both POM files? -Original Message- From: Alex Ditu [mailto:ditu.alexan...@gmail.com] Sent: Monday, August 10, 2015 10:17 AM To: Maven Users List Subject: [EXTERNAL] Re: Use 2 pom.xml files with different names So

RE: profile activation with multiple conditions

2015-11-10 Thread Justin Georgeson
activated. > -Original Message- > From: Justin Georgeson [mailto:jgeorge...@lgc.com] > Sent: Friday, November 06, 2015 9:39 AM > To: Maven Users List > Subject: [EXTERNAL] RE: profile activation with multiple conditions > > Sorry about that crazy URL, I think that's a networ

RE: [EXTERNAL] RE: profile activation with multiple conditions

2015-11-10 Thread Justin Georgeson
n with multiple conditions > > Justin Georgeson wrote: > > > So here's a minimal parent pom.xml, which lists 2 child modules that I > > created with 'mvn archetype:generate' choosing the > > 'maven-archetype-quickstart' archetype. My goal was that if I > > >

profile activation with multiple conditions

2015-11-06 Thread Justin Georgeson
I have a profile defined in my parent POM which I'm trying to activate like this jarsigner.keystore.scm.url ${keystore.dir} The goal is that when run with

RE: profile activation with multiple conditions

2015-11-06 Thread Justin Georgeson
Sorry about that crazy URL, I think that's a network security service my employer just signed up with. > -Original Message- > From: Justin Georgeson [mailto:jgeorge...@lgc.com] > Sent: Friday, November 06, 2015 9:34 AM > To: users@maven.apache.org > Subject: [EXTERNAL] pro

RE: [EXTERNAL] Re: POM file downloaded by Maven different than what was deployed.

2015-09-23 Thread Justin Georgeson
Good idea. The wireshark packet reassembly suggests that it's the 'magic' is happening on the server side. So will have to wait for reply from jFrog. > -Original Message- > From: Wayne Fay [mailto:wayne...@gmail.com] > Sent: Wednesday, September 23, 2015 2:57 PM > To: Maven Users List >

RE: [EXTERNAL] Re: POM file downloaded by Maven different than what was deployed.

2015-09-23 Thread Justin Georgeson
Just found this http://dev.eclipse.org/mhonarc/lists/tycho-user/msg02463.html Turns out it's a configurable behavior when using Artifactory's virtual repository feature. After disabling that it's working. > -Original Message- > From: Justin Georgeson [mailto:jgeorge...@lgc.com]

POM file downloaded by Maven different than what was deployed.

2015-09-23 Thread Justin Georgeson
I have a parent pom deployed to Artifactory (3.9.3), which when downloaded into local Maven repo by Maven itself (3.2.5, as a normal part of the Maven build lifecycle), is not the same as what is deployed. If I download the file directly with curl, I get the expected file. I have confirmed that

RE: [EXTERNAL] SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Justin Georgeson
Is the failure happening during CI with a shallow clone? I've seen a few systems > -Original Message- > From: simone.trip...@gmail.com [mailto:simone.trip...@gmail.com] On > Behalf Of Simone Tripodi > Sent: Tuesday, June 14, 2016 6:14 PM > To: Maven Users List >

RE: [EXTERNAL] How best to override maven-javadoc-plugin to do nothing?

2016-01-14 Thread Justin Georgeson
Try setting property maven.javadoc.skip to true in your pom.xml https://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#skip https://maven.apache.org/plugins/maven-javadoc-plugin/jar-mojo.html#skip > -Original Message- > From: David M. Karr

RE: [EXTERNAL] Re: "conditional" parent POM?

2016-03-10 Thread Justin Georgeson
Use a property for the URL, with the default in the pom set to a public Maven repository, and then in your settings.xml have a profile that sets the property to your internal repo URL, and activate the profile with the section of the settings.xml > -Original Message- > From: Max

RE: [EXTERNAL] mvn deploy without rebuilding?

2016-05-03 Thread Justin Georgeson
The deploy and install plugins act on attached artifacts, which I believe generally requires the package phase. For a given packaging type, there should be a plugin goal which is by default bound to the package phase to creates and attaches the artifacts for the project. So for a standard

re-using server credentials for repositories

2016-07-19 Thread Justin Georgeson
ttp://stackoverflow.com/questions/21836539/sonatype-nexus-how-to-set-a-single-server-credentials-for-multiple-repositories [4] - http://stackoverflow.com/questions/15011250/maven-meaning-of-repository-id [5] - https://issues.apache.org/jira/browse/MNG-5585 Justin Georgeson Release Management Email: jgeo

RE: [EXTERNAL] re: re-using server credentials for repositories

2016-07-20 Thread Justin Georgeson
_github.com_apache_maven_commit_1068ab557c476a291f3f16bc2b2523d > 5613c5e17-23diff- > 2D62baa3a3145d2df18244b7d719fc9686L42=CwIFaQ=PskvixtEUDK7wuW > U- > tIg6oKuGYBRbrMXk2FZvF0UfTo=dLxYM3PBhAqFnkH7uKz_OVZL1uyui4QoEm > BCjCmEiTk=kxV_OBrfrqA3HJvQpLbw6RBzFx4wh2DAkwYYUa2HVbk=8- > vVUeqE0X9Nl8y

RE: Strategies for overriding parent plugin configuration in some modules without duplicating config code?

2017-02-20 Thread Justin Georgeson
Have you looked at combine.children="append" or combine.self="override" attributes to the element? http://blog.sonatype.com/2011/01/maven-how-to-merging-plugin-configuration-in-complex-projects/ https://maven.apache.org/pom.html -Original Message- From: KARR, DAVID

RE: buildnumber-maven-plugin's buildNumber property unset during deploy goal

2017-02-11 Thread Justin Georgeson
ub project generated with the quickstart archetype and submitted it as an issue to buildnumber-maven-plugin [2]. [2] https://github.com/mojohaus/buildnumber-maven-plugin/issues/58 -Original Message----- From: Justin Georgeson [mailto:jgeorge...@lgc.com] Sent: Saturday, February 11, 2017 6:51 PM

buildnumber-maven-plugin's buildNumber property unset during deploy goal

2017-02-11 Thread Justin Georgeson
Posting here in case the issue is in maven-deploy-plugin rather than buildnumber-maven-plugin. Using 1.4 of buildnumber-maven-plugin, with both 3.2.5 and 3.3.9 of Maven. I'm trying to make use of Artifactory's matrix parameters in the distributionManagement URL to attach properties in

RE: [EXTERNAL] Re: buildnumber-maven-plugin's buildNumber property unset during deploy goal

2017-02-13 Thread Justin Georgeson
u must have the 'Annotate' permission in order to add properties to deployed artifacts. ? Kind regards Karl Heinz Marbaise On 12/02/17 02:24, Justin Georgeson wrote: > Slight correction, the timestamp property as set by buildnumber-maven-plugin > is also not set. I noticed I a

RE: [EXTERNAL] Re: buildnumber-maven-plugin's buildNumber property unset during deploy goal

2017-02-27 Thread Justin Georgeson
Hi Karl, have you been able to find anything regarding this issue? -Original Message- From: Justin Georgeson Sent: Monday, February 13, 2017 2:45 PM To: Maven Users List <users@maven.apache.org>; 'i...@soebes.de' <i...@soebes.de> Subject: RE: [EXTERNAL] Re: buildnumber-ma

RE: [EXTERNAL] Re: help with version range

2016-09-23 Thread Justin Georgeson
The Aether doc shows both bounds being inclusive with the min/max form, but you have an exclusive upper bound. Using "[1.1.min,1.1.max]" is working for me with both 3.2.5 and 3.3.9. So that's awesome! The .* form is working for me too. I'm using JDK 1.8.0_102, and my projects are pretty much

RE: [EXTERNAL] Re: help with version range

2016-09-23 Thread Justin Georgeson
...@schulte.it] Sent: Friday, September 23, 2016 8:47 PM To: Maven Users List <users@maven.apache.org> Subject: Re: [EXTERNAL] Re: help with version range Am 09/24/16 um 02:15 schrieb Justin Georgeson: > The Aether doc shows both bounds being inclusive with the min/max form, but > you have an exc

help with version range

2016-09-23 Thread Justin Georgeson
3.9. Can the version range syntax express the range I want? Justin Georgeson Landmark Cloud Platforms & DevOps - RM Email: jgeorge...@lgc.com<mailto:jgeorge...@lgc.com> Follow Halliburton: LinkedIn<http://logw332.ati-host.net/gopc.url?xts=553058=EPR-25-%5bHAL-signatures%5

RE: [EXTERNAL] Re: help with version range

2016-09-23 Thread Justin Georgeson
9]", no? A bit hacky, but would match the versions you want in practice. Regards, Curtis On Sep 23, 2016 8:38 AM, "Justin Georgeson" <jgeorge...@lgc.com> wrote: > I’m using the parent version range feature with “[1.1.0,1.2.0)” and it > had been going well. However I

RE: [EXTERNAL] Re: help with version range

2016-09-23 Thread Justin Georgeson
ally, what I mean when I say [1.0,2.0) is any 1.x version but nothing related to 2.0... -Original Message----- From: Justin Georgeson [mailto:jgeorge...@lgc.com] Sent: Friday, September 23, 2016 10:11 AM To: Maven Users List Subject: RE: [EXTERNAL] Re: help with version range Yeah, I

RE: [EXTERNAL] Maven password encryption by project

2017-03-17 Thread Justin Georgeson
You might want to look into secrets management tools such as Vault from HashiCorp and KeyWhiz from Square. -Original Message- From: Alix Lourme [mailto:alix.lou...@gmail.com] Sent: Friday, March 17, 2017 8:39 AM To: Maven Users List Subject: [EXTERNAL] Maven

RE: [EXTERNAL] Re: Getting maven to create a bundle manifest incrementally in eclipse

2017-03-21 Thread Justin Georgeson
POM-first dependencies in Tycho is just for resolution of plugin jars from Maven repo (when they're not available in a P2 software site). It doesn't handle writing your MANIFEST file to reflect those POM-first dependencies, so you have to declare them in both files in that case. -Original

RE: [EXTERNAL] Re: Getting maven to create a bundle manifest incrementally in eclipse

2017-03-21 Thread Justin Georgeson
/Repository/Target projects). -Original Message- From: Karl Heinz Marbaise [mailto:khmarba...@gmx.de] Sent: Tuesday, March 21, 2017 5:06 PM To: Justin Georgeson <jgeorge...@lgc.com>; Maven Users List <users@maven.apache.org>; i...@soebes.de Subject: Re: [EXTERNAL] Re: Getting mav

RE: [EXTERNAL] Re: Any way to change the color scheme in Maven 3.5.0?

2017-04-12 Thread Justin Georgeson
I vote for a help plugin goal, like help:color-style. It could show a brief summary and how to customize, list available settings, and print active settings. -Original Message- From: Hervé BOUTEMY [mailto:herve.bout...@free.fr] Sent: Tuesday, April 11, 2017 8:10 PM To: Maven Users List

profile activation on property set but !value vs property not set

2017-03-11 Thread Justin Georgeson
Seeing that I can ! the property value in a profile activation, I assumed there were three states to consider when evaluating the property activation: 1. Property not set 2. Property set and value does not match 3. Property set and value does match With this assumption I thought

RE: [EXTERNAL] [ANN] Apache Maven Version 3.5.0-alpha-1 Released

2017-03-01 Thread Justin Georgeson
Thanks for all the hard work that goes into maintaining and improving the tool! Any chance the Aether work would somehow enable declaring server credentials only once in settings.xml and then reusing them for multiple build.repositories.repository nodes in pom.xml (such as when you have

RE: [EXTERNAL] [ANN] Apache Maven Version 3.5.0-alpha-1 Released

2017-03-02 Thread Justin Georgeson
Message- From: Andreas Sewe [mailto:s...@st.informatik.tu-darmstadt.de] Sent: Thursday, March 2, 2017 6:05 AM To: users@maven.apache.org Cc: Justin Georgeson <jgeorge...@lgc.com> Subject: Re: [EXTERNAL] [ANN] Apache Maven Version 3.5.0-alpha-1 Released Stephen Connolly wrote: > Can y

RE: Maven properties passed to external ant build file

2017-08-18 Thread Justin Georgeson
nal Message- > From: Justin Georgeson [mailto:justin.george...@halliburton.com] > Sent: Thursday, August 17, 2017 5:31 PM > To: Maven Users List (users@maven.apache.org) <users@maven.apache.org> > Subject: [EXTERNAL] Maven properties passed to external ant build file > > E

Maven properties passed to external ant build file

2017-08-17 Thread Justin Georgeson
I'm using maven-antrun-plugin to execute targets in an external Ant build file, and having an issue with inherited properties. ${skipIvyPublish} As you might guess from the above, I have a

project.basedir in file-based profile activation

2017-06-22 Thread Justin Georgeson
With 3.3.9 and 3.5.0 When I use this my-profile-id ${project.basedir}${file.separator}somefile.txt I see this warning [WARNING] Some problems were encountered while building the effective model for

RE: [EXTERNAL] Re: project.basedir in file-based profile activation

2017-06-23 Thread Justin Georgeson
ith links/attachments. > > > > Justin Georgeson wrote: > > > With 3.3.9 and 3.5.0 When I use this > > > > > > > > my-profile-id > > > > > > ${project.basedir}${file.separator}somefile.t

RE: Follow up: Building projects for multiple platforms

2017-06-16 Thread Justin Georgeson
Instead of tweaking the version, I would configure an executions of the compiler plugins compile and testcompile goals to a separate output folders, like ${build.directory}${file.separator}classes-java7 and ${build.directory}${file.separator}test-classes-java7 and then an execution of the jar

RE: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-04 Thread Justin Georgeson
Also I believe the partial reactor switches don't work for Tycho builds. -Original Message- From: Robert Patrick [mailto:robert.patr...@oracle.com] Sent: Thursday, May 4, 2017 3:18 PM To: Maven Users List ; i...@soebes.de Subject: [EXTERNAL] RE: Continuous

RE: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-04 Thread Justin Georgeson
Yup :) -Original Message- From: Karl Heinz Marbaise [mailto:khmarba...@gmx.de] Sent: Thursday, May 4, 2017 4:52 PM To: Justin Georgeson <jgeorge...@lgc.com>; Maven Users List <users@maven.apache.org>; i...@soebes.de Subject: Re: [EXTERNAL] RE: Continuous Delivery with Maven

RE: [EXTERNAL] Re: how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-24 Thread Justin Georgeson
aven Users List <users@maven.apache.org>; Justin Georgeson <justin.george...@halliburton.com> Subject: [EXTERNAL] Re: how to use both buildnumber-maven-plugin and maven-release-plugin External Sender: Use caution with links/attachments. Hi, the question is what the real problem is? C

RE: [EXTERNAL] Re: how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-24 Thread Justin Georgeson
> -Original Message- > From: Karl Heinz Marbaise [mailto:khmarba...@gmx.de] > Sent: Tuesday, October 24, 2017 12:25 PM > To: Justin Georgeson <justin.george...@halliburton.com>; > i...@soebes.de; Maven Users List <users@maven.apache.org> > Subject: Re:

dependencies of plugins and pluginRepositories

2017-10-20 Thread Justin Georgeson
I'm sure this has been discussed before but I could only find this thread from 2011 with no replies. https://www.mail-archive.com/users@maven.apache.org/msg118612.html I had expected that build.plugins.plugin.dependencies would be resolved from pluginRepositories, so I have some jars published

how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-23 Thread Justin Georgeson
The 'clean verify' invoked by release:prepare fails in buildnumber-maven-plugin because pom.xml is modified. I can pass arguments to release:prepare have buildnumber-maven-plugin skip the check for modifications, but that check is one of the main motivations for using it in the first place.

RE: [EXTERNAL] Anything in pipeline to add functionality to read pom in different formats?

2018-02-01 Thread Justin Georgeson
Polyglot https://github.com/takari/polyglot-maven -Original Message- From: ahardy42 [mailto:adam.ha...@cyberspaceroad.com] Sent: Thursday, February 1, 2018 7:48 AM To: users@maven.apache.org Subject: [EXTERNAL] Anything in pipeline to add functionality to read pom in different formats?