aggregation and dependency resolution

2015-11-05 Thread Jeremy Long
I have been struggling with creating an aggregate goal that successfully works and I was hoping someone on this list could help. The plugin is dependency-check-maven < https://github.com/jeremylong/DependencyCheck/tree/master/dependency-check-maven >; it performs identification (CPE

Re: How easy/reliable is a maven repo hosted on webdav?

2015-11-05 Thread Graham Leggett
On 05 Nov 2015, at 2:13 AM, Kevin Burton wrote: > I need to setup a new maven repo due to some changes we're making in our CI > framework. > > Basically, I want something simple.. I was looking at bintray and > artifactory and I think they are overkill for what we need and

Copying resources from another .jar with assembly to build a deb?

2015-11-05 Thread Kevin Burton
I have init scripts and various other scripts I want to share between projects. The MAIN one is our init script for our daemons. so if I have a project I want to depend on artemis-daemon which has our daemon scripts. Then I want to copy some resources from that .jar while building a dpkg via

Re: Copying resources from another .jar with assembly to build a deb?

2015-11-05 Thread Kevin Burton
I'm trying this plugin: https://maven.apache.org/plugins/maven-remote-resources-plugin/examples/sharing-resources.html ... and seems to work well! On Thu, Nov 5, 2015 at 11:29 AM, Wayne Fay wrote: > I could be wrong, but I think you are looking for >

Re: Copying resources from another .jar with assembly to build a deb?

2015-11-05 Thread Wayne Fay
I could be wrong, but I think you are looking for maven-dependency-plugin:unpack. Wayne On Thu, Nov 5, 2015 at 12:42 PM, Kevin Burton wrote: > I have init scripts and various other scripts I want to share between > projects. > > The MAIN one is our init script for our

Re: How easy/reliable is a maven repo hosted on webdav?

2015-11-05 Thread Ken Hylton
Another +1 on not trying a home-grown solution. I manage an Artifactory server that services 4000+ developers, and have had exactly one issue in a year and a half (restarted server/service, 5 min outage). Before that we ran Nexus, and NEVER had any issues with that. Thanks, Ken *It is through

Re: How to perform a deploy only

2015-11-05 Thread Francois MAROT
Hello Pavan, it's hard to tell exactly but in Eclipse (Eclipse JEE at least) if you declare a tomcat instance in the "server" window, and import your maven modules with m2e, you should be able to deploy to Tomcat without problems. No more needs for command-line clean/install/deploy (as long as

RE: How easy/reliable is a maven repo hosted on webdav?

2015-11-05 Thread Robert Patrick
+1 on not trying to use some other solution. Some people I know were trying to use WebDAV and the WebDAV wagon to work around some network limitation that they had and it was extremely painful and the WebDAV wagon seems to have not really been tested very well. I stood up an artifactory

Re: Convention for shipped artefacts?

2015-11-05 Thread Francois MAROT
I have kinda the sae project: 50 or so modules, 3 'leaf' artifacts (I coined the term 'leaf' to designate the artifacts that will actually be shipping outside. For me those 3 artifacts share the fact they are each an obfuscated über-jar, and each composed of a combination of the other artifacts.

Re: How easy/reliable is a maven repo hosted on webdav?

2015-11-05 Thread Kevin Burton
On Wed, Nov 4, 2015 at 10:36 PM, Anders Hammar wrote: > A real repository manager is not overkill but rather the basic foundation > in a Maven-based dev environment. And there are free versions of them: > nexus oss, artifactory and archiva. > I strongly advice against trying

RE: Convention for shipped artefacts?

2015-11-05 Thread Robert Patrick
We use http://www.mojohaus.org/flatten-maven-plugin/ to strip out "development-related" stuff, parent POMs, etc. from our POMs for our "leaf" artifacts so that they have standalone POMs with only their dependencies in them. -Original Message- From: Francois MAROT