Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-users] Import EjbProject creates EjbProjectClient

In RAD, you can go to Windows > Preferences > Java EE > Project and uncheck the option "Add project to an EAR" to prevent this.


Regards,

Roberto Sanchez Herrera



From: Fred Bricon <fbricon@xxxxxxxxx>
To: Maven Integration for Eclipse users mailing list <m2e-users@xxxxxxxxxxx>
Date: 24-08-13 10:32
Subject: Re: [m2e-users] Import EjbProject creates EjbProjectClient
Sent by: m2e-users-bounces@xxxxxxxxxxx





I kinda remember RAD has an option to automatically generate an EJB client for all EJB projects, somewhere in the preferences.
Someone from the RAD team can probably confirm / give you better instructions.

You can find some doc about RAD/m2e integration over http://wiki.eclipse.org/M2E-WTP_FAQ#How_to_use_M2E-WTP_in_IBM_RAD.3F


On Sat, Aug 24, 2013 at 2:04 AM, Sander Verhagen <verhagen@xxxxxxxxxx> wrote:
Hi group,


When I import a project (let's say EjbProject) which is a Maven EJB project into Eclipse/RAD using m2e (Import, "Existing Maven Projects") it imports reasonably nicely, but then:

1. Creates a client project (let's say EjbProjectClient) that is mostly empty, except for a MANIFEST.MF.

2. Complains within the main project (let's say EjbProject) as follows:
Missing classpath entry to project "CONWAY_OPERATIONS_EJBClient" should be added because it is defined as a Java EE Module dependency.

Below follow some snippets from my EJB project's POM.

I don't want these new client projects since I have my own client projects. Your help appreciated.

Best regards, Sander.

(P.S.: I appreciate this may not be a m2e problem, but I have to start somewhere!)




<packaging>ejb</packaging>
...
<build>
        <sourceDirectory>ejbModule</sourceDirectory>
        <outputDirectory>${project.basedir}/bin</outputDirectory>
        <resources>
                <resource>
                        <directory>ejbModule</directory>
                        <excludes>
                                <exclude>**/*.java</exclude>
                                <exclude>**/*.class</exclude>
                        </excludes>
                </resource>
        </resources>
...
        <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-ejb-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                        <archive>
                        <manifest>
                        <addClasspath>true</addClasspath>
                        </manifest>
                        </archive>
                        <excludes>
                        <exclude>**/*.java</exclude>
                        </excludes>
                </configuration>
        </plugin>



Sander Verhagen
[ Verhagen@xxxxxxxxxx ]
_______________________________________________
m2e-users mailing list

m2e-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/m2e-users



--
"Have you tried turning it off and on again" - The IT Crowd
_______________________________________________
m2e-users mailing list
m2e-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/m2e-users



Back to the top