The multi-module tag has no wiki summary.
6
votes
1answer
431 views
Best Practices for Project Feature Sub-Modules with Mercurial and Eclipse?
I have a couple of ANT projects for several different clients; the directory structure I have for my projects looks like this:
L___standard_workspace
L___.hg
L___validation_commons-sub-proj ...
4
votes
1answer
153 views
Pull dependencies of modules by referencing parent in maven java project?
I have a maven-java project (say Project A) with a parent defining modules in its pom.
I also have an external project (say Project B) that requires dependencies of two of the modules from Project A. ...
4
votes
1answer
2k views
Parent properties inside maven antrun plugin
There is a multi-module project. Inside the child I need to do some complicated stuff (integration test with deploying to application server and so on). So there is an integrationtest child, and from ...
4
votes
1answer
1k views
Can a multi-module m2eclipse/WTP project get utility modules deployed into WEB-INF/classes?
We currently use MyEclipse with its built-in Maven4MyEclipse integration and its built-in J2EE server support, but want to convert over to regular eclipse (Helios specifically) to be able to use its ...
4
votes
2answers
485 views
Do Maven Multi-Module and EAR play well together?
Today, I've been looking at Maven Multi-Module and EAR projects and they seem quite similar in that both seem to define an assembly of a collection of other projects - it almost seems like an EAR ...
4
votes
4answers
4k views
maven multi-module versioning
I have a multi-module project.
parent POM (1.0-SNAPSHOT)
|-- module1 (1.0-SNAPSHOT)
|-- module2 (1.0-SNAPSHOT)
`-- module3 (1.0-SNAPSHOT)
When I execute mvn release:prepare it verify that parent ...
4
votes
1answer
3k views
maven m2eclipse multi module project
I have a multi module maven project and the directory structure is hierarchical. Some modules have dependencies on others. I have added the dependent modules to the dependency section of the project's ...
3
votes
3answers
130 views
Maven : Multimodule projects and versioning
What are the best practices for software versioning and multimodules projects with Maven?
I mean, when I create a multimodules project with Maven, what is the best approach for the versioning? To use ...
3
votes
3answers
636 views
Maven multimodule project composition regarding dependencies sharing
There are a few similar questions, but nothing like this. How do you deal with this situation (typical scenario) :
A project of 8-11 child projects, having a parent artifact/project and one main ...
3
votes
2answers
2k views
Problem with Eclipse and a Maven multi-module project
I have created a Maven project with the following structure:
+ root-project
pom.xml (pom)
+ sub-projectA (jar)
+ sub-projectB (jar)
I have done the following steps:
mvn archetype:create ...
3
votes
1answer
299 views
executing a script from maven inside a multi module project
I have this multi-module project.
In the beginning of each build I would like to run some bat file.
So i did the following:
<profile>
<id>deploy-db</id>
...
2
votes
1answer
120 views
How to assemble multimodule maven project into one WAR?
Similar question here.
I would like to get ONE resulting WAR to be deployed from 3 different maven modules. The war modules are absolutely non-conflicting :
First one that has Java classes and some ...
2
votes
3answers
45 views
How should I share Maven DepdendencyManagement from multiple sources?
I have a Maven project multimodule project. Some of the modules create custom packaging for the libraries produced by the other modules. The packaging being used has its own suite of versioned ...
2
votes
1answer
227 views
Maven copy resources in multi module project
My need is pretty basic but I could not find any clean answer to it: I simply need to be able to distribute a resource in a multi-module project.
Let us consider for example the LICENSE file, which ...
2
votes
1answer
73 views
Where to put property file that is used across different modules in a multi-module maven project?
i have created a nice multi-module project using maven, but now i am wondering what the best place would be to store property files that shared accross modules. To give an example i have 4 modules all ...
2
votes
2answers
226 views
Maven multi-module: aggregate common dependencies in a single one?
I have searched for such a question without finding anything, so here I go.
I have a multi-module maven project. Multiple modules all inherit the same parent, where common dependencies are defined. ...
2
votes
1answer
1k views
Managing big multi-module projects in Subversion/Maven/Hudson
We have a rather big java application which consists of tons of maven artifacts. Each subsystem has its own folder in the subversion tree with trunk/, branches/ and tags/ subfolders and hosts multiple ...
2
votes
1answer
264 views
configuring GWT devmode sources location
I've seen that changing a source java file that contains GWT code(i.e. creating buttons, labels), gets reloaded automatically when I hit browser refresh.
I'm doing a multi-module maven project with ...
2
votes
2answers
392 views
gwt multi-module vs single-module project
I've seen the GWT Expenses app from GWT SDK is using single module structure.
Is this a best practice? Are there any cons in having the project split into multiple maven modules, i.e:
client
shared
...
2
votes
1answer
1k views
How to setup multi-module maven project with proper release and version structure
I could not find the best practice for my multi-module maven project,in terms of versioning, release and osgi bundles,
First of all Versioning and relase. my project has 5-6 sub modules with 200+ ...
2
votes
1answer
523 views
maven multi-module assembly
I have a multi-module maven project, and I'm trying to create an assembly for the project. The assembly should be a zip file, including all of the jars from the dependent projects as well as all of ...
1
vote
4answers
40 views
Advice on creating Maven project structure - Multiple Modules vs Multiple Projects?
Consider the following enterprise application layering example:
project-services -> POJO Services layer
project-web -> Web application, depends upon 'project-services', deployed as a WAR
...
1
vote
2answers
36 views
How to config slf4j+logback in a multi-module Maven project?
My Maven project has about seven sub-modules. Six of them packages as JARs and one as WAR.
Should I create individual logback.xml config in each module? Or should I have a "common" module that all ...
1
vote
1answer
26 views
Trying to connect module pom and parent pom. How do I set the relative path?
I haven't found an appropriate example for this, so I ask here:
My project structure is
workspace
|
|-->plugins
| |
| --> some.plugin.folder
| |
| --> parentpom.xml
|
|-->tests
|
...
1
vote
1answer
104 views
Jenkins and maven multi module Projects missing artifacts
This is a simplified example of an ear project, the parent pom aggregates the EAR, the EJBs, and the jars.
I have this structure in a Maven project, stored in SVN:
parent/
|- pom.xml
|- modulA/
| ...
1
vote
2answers
120 views
Maven multi-module project - copying all “package” JARS from submodules into parent/target/
I have a maven project with quite a few submodules. What I am looking for is a way to get all the .jar files produced by the sub-modules included in the aggregating POM's /target/ directory, so they ...
1
vote
2answers
425 views
How to configure Jenkins for a multi-module maven project
I have a maven multi-modul project. The structure looks like:
-modulA (Main project)
- pom.xml
-parentModul (Aggregator)
- pom.xml
- ModulB (Integration Test Project)
...
1
vote
0answers
57 views
Maven Multimodul project in Eclipse and in SVN
I have an existing project, MainProject. I want to convert it to a multimodule project. In Eclipse I created a parent modul, which is just a pom modul and another modul, Modul_1.
Then I moved my ...
1
vote
2answers
106 views
Refining a Spring Bean in a multi-module Maven project?
I am drawing a blank on this for some reason. I have a multi-module Spring/Maven project. In module1 I define a singleton bean called "info" and it works within module1 just fine.
However module2 ...
1
vote
0answers
255 views
Build aggregator pom for multi module project, with a profile for sub-module
I have a multi-module project as follows
--- Module A ( builds war )
--- Module B
--- Module C
To build the the multi-module project, I have a aggregator POM that defines the modules.
...
1
vote
0answers
227 views
Feasibility of getting Maven aggregator pom to inject properties into module poms (not using inheritance)
A bit of a feasibility question for you regarding Maven. Particular, on whether we can define properties in an aggregating pom and then inject them into the referenced modules, thus allowing that ...
1
vote
1answer
108 views
Is there any 'Equinox (OSGi)' like implementation for using in Ruby?
Is there any 'Equinox (OSGi)' like implementation for using in Ruby?
I would like to use distributed multimodality with easy management in Ruby and I wasn`t able to find anything like E
1
vote
1answer
917 views
How to release Maven multi-module project with inter-project dependencies?
Lets say we have 3 layers project. DB, Business, Web and aggregating pom.
Project
|-DB
| |-pom.xml
|-Business
| |-pom.xml
|-pom.xml
All modules are ment to be released and branched ...
1
vote
2answers
678 views
Structure for big GWT project
Context
big project with multi maven module or single maven module structure
Question
did you finally use multi-maven-module or single-maven-module structure?
Details
If you've worked on a ...
1
vote
1answer
371 views
Having the maven parent project in Eclipse for a flat project layout
I'm trying to "mavenize" an existing EAR application.
I've read the guidelines to create a multi-module project with WTP and created a "flat project layout".
My problem is that when typing the ...
1
vote
1answer
244 views
Multi-webapp Maven 2 project — how to build a single webapp?
I have the following source layout:
.
├── pom.xml
├── modules (has pom)
│ ├── module1 (has pom)
│ └── module2 (has pom)
│ └── moduleN (has pom)
└── webapp1 (has pom)
└── webapp2 (has pom)
...
1
vote
1answer
303 views
multi-modules project with maven is not working as expected?
Hi
I am trying to create a multi-modules project in eclipse with m2eclipse. I followed some tutorials but the way it work is not what i expect:
Here is the structure of my project
-Root
- ...
1
vote
2answers
609 views
Maven2 applying filtering to the file under pom type packaging
I am new to maven. I want to use filtering in a multimodule project. The packaging type of the parent pom is set to pom. The structure of the project is as follows:
pom.xml
|
|______MODULE1
...
0
votes
1answer
14 views
multi-module project and ${basedir} placeholder
I have a multi module project with the following structure:
-parent
-module1
-module2
-src
-main
-javadoc
-stylesheet.css
-pom.xml
I want to configure the ...
0
votes
2answers
28 views
Maven Assembly Submodules Multimodules
Hi i need to assembly jars from multimodule project in master directory. Let us have a structure like this:
MASTER(pom)
|
+-A3(pom)
| +-A1(jar)
| +-A2(jar)
+-B3(pom)
+-B1(jar)
+-B2(jar)
What i ...
0
votes
1answer
67 views
Managing multi-module dependencies with Maven assembly plugin
I use Maven assembly plugin to create an assembly for my multi-module project. There are two separate applications built from this multi-module project, each having a separate set of dependencies. I ...
0
votes
0answers
34 views
Order of maven multi module is not maintained for eclipse plugins
We have a bunch of eclipse plugin projects, features and update sites. We have created a master pom where we define the modules:
<modules>
<module>bundles/b1</module>
...
0
votes
2answers
60 views
How to setup maven framework top level pom
I just finished converting one of our in-house framework projects from ant to maven. The maven build runs fine, and deploys to our repository with no issues.
The problem is when other projects try ...
0
votes
1answer
219 views
multi-module project spring 3.0 AnnotationSessionFactoryBean packagesToScan property value to be set module-wise
I have the following structure:
common-module
Contains the common module related , services and persistence api
Contains a common persistence context test-common-persistence-context.xml.
...
0
votes
0answers
37 views
Maven: SCM and multimodules projects
I have a big multimodules project and I want to specify SCM infos to Maven.
But, each one of the modules and the parent project have a dedicated folder on SVN, so it seems that SCM infos are specific ...
0
votes
1answer
41 views
Maven: module shared by multiple projects?
I have multiple projects that depends on the same data model. The latter is defined by a Maven project. Let's take as example two composite projects A and B that include multiple modules each one and ...
0
votes
3answers
474 views
Eclipse + Maven + Git + Multi-Module projects = Unhappiness
We've got a multi-module project using Eclipse and Maven. The only way I could get it to work in the past was to use a flat layout for the projects, where the parent module was a peer to the other ...
0
votes
0answers
184 views
Hudson: Builds of multi-module maven project fail, then immediately succeed again
I have a multi-module project where the top level project serves both as the parent of the individual modules and as the project that declares the modules. Only this top level project is configured in ...
0
votes
3answers
84 views
Running unit tests before building stage in multi-module maven project
I have a multi-module maven project. In every module there are unit tests. When I make clean install tests run before every module and if all tests in one module are success it build successfully. If ...
0
votes
1answer
32 views
Build webapp and its independent plugins with maven
I have a webapp, that I will call core, that can have plugins (not maven plugins) added to it, but it should run and build fine as a stand alone webapp. We have a plugin-lib that the core depends on ...