dependency management in sub-sub-module

2009-06-11 Thread Markus Jostock
Dear all I have module structure with two levels of sub-modules. The root level pom defines a dependency managment section which is working fine for sub-modules. But for a deeper level, the dependency management section of the root pom apparently is not available any more ... root +- module1

Weired classpath pb: class not found in parent dir

2009-02-09 Thread Markus Jostock
Dear all In a sub-module of a multi-module project I parse an XML file via Xalan (using antrun and a task). While it works fine when I run mvn in the sub-module, it fails when I run mvn in the superior parent module, although I put a dependency to Xalan in the antrun plugin definition. Wo

Deploymen in Websphere via maven

2008-11-27 Thread Markus Jostock
Hi Would anyone happen to have a good example of how to use maven in order to deploy a generated WAR file in a (possibly remote) instance of IBM Websphere 7.0 ? (cargo-plugin or somenthing else) Any help would be welcome, since the IBM's wsadmin tool is not really a good solution ... Many

Re: Dependency of sibling module

2008-11-06 Thread Markus Jostock
Hi Samuli Many thanks, yes this solved my problem. So it's the reactor which is a kind of execution entity? I thought it would be possible for the reactor via the parent/child relationship to find the parent pom and therein the module1 ... Cheers Markus Samuli Saarinen wrote : parent

Dependency of sibling module

2008-11-06 Thread Markus Jostock
Hi My project structure is like this parent<-- type pom +-- module1 <-- type jar +-- module2 <-- type jar, depends on module 1 When running mvn in the parent directory everything works fine. But when running mvn in the module2, which depends on module1, maven tries to do

Dependency of sibling project / module not found

2008-11-03 Thread Markus Jostock
Dear all I have a parent project 'proj' which contains two sub projects: 'core' and 'tools'. core depends on tools. tools is built first. core and tools have a child relationship to the parent 'proj'. When running 'mvn package' in the parent project, everything builds fine. no problem.

Blocking an inherited plugin

2008-10-31 Thread Markus Jostock
Dear all I have a little application with three sub-modules. There is a parent child relation between the parent app and the sub-modules. The parent application generates code for the three sub-modules via an antrun plugin in the "generate-sources" phase. This works fine. Then each of the sub