Maven Repository-Based JBoss IntelliJ Investigation Environment: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 15: Line 15:
<font color=red>Come up with a solution when the target version is 6.4.4, for example, but the Maven repository corresponds to 6.4.0. The repository won't probably capture subsequent patches.</font>
<font color=red>Come up with a solution when the target version is 6.4.4, for example, but the Maven repository corresponds to 6.4.0. The repository won't probably capture subsequent patches.</font>


Unzip the Maven repository into <tt>~/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository</tt>.
Unzip the Maven repository into <tt>~/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository</tt>. Alternatively, EAP 6.4.0 gets unzipped into <tt>~/projects/eap6.4/6.4.0/jboss-eap-6.4.0.GA-maven-repository</tt>.


Create an empty IntelliJ project rooted in the Maven repository directory <tt>/Users/ovidiu/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository/maven-repository</tt>.
Create an empty IntelliJ project rooted in the Maven repository directory <tt>/Users/ovidiu/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository/maven-repository</tt>.

Revision as of 03:56, 10 May 2016

Internal

Overview

This article describes the procedure to create an IntelliJ project whose modules contain JBoss EAP source code and that can later be imported within other IntelliJ projects to help with debugging code running within JBoss - including the JBoss parts.

Create Reference Modules

Get the Maven repository corresponding to the JBoss instance you intent do debug.

Come up with a solution when the target version is 6.4.4, for example, but the Maven repository corresponds to 6.4.0. The repository won't probably capture subsequent patches.

Unzip the Maven repository into ~/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository. Alternatively, EAP 6.4.0 gets unzipped into ~/projects/eap6.4/6.4.0/jboss-eap-6.4.0.GA-maven-repository.

Create an empty IntelliJ project rooted in the Maven repository directory /Users/ovidiu/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository/maven-repository.

Project format: .idea (directory based).

Add a module. New -> Module -> Java

Name: EAP 7.0 Beta Undertow

Content root: /Users/ovidiu/projects/eap7/beta/jboss-eap-7.0.0.Beta1-maven-repository/maven-repository/modules/EAP 7.0 Beta Undertow

Use the same value for module file location.

Open Module Settings -> Dependencies -> Library -> Java -> ... io/undertow/undertow-core/1.3.7-Final-redhat-1/*.jar

Level: Module Library

+ -> the source JAR.

Scope: Provided.

Add More Content to a Reference Module

Open the reference IntelliJ project -> navigate to the module in question -> Dependencies -> + -> Library -> Java

then follow the same procedure as for Create Reference Modules.


It is important to follow the same procedure and be careful to settings (such as Level, etc), otherwise you could end up with broken modules.

You can add new libraries to a Module that is currently open in a different project, but in order to see the changes, you will need to close and re-open the dependent project.

Import a Module in Your Project

File -> Project Structure -> Modules -> + -> Import Module.