Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse classpath entries only used for tests

In Maven, you can have compile-time dependencies and test dependencies. This is a feature I love, and the M2Eclipse plugin makes this available in Eclipse, too, which is great. So if I add jmock.jar to my project as a test dependency, it will show up on the classpath for JUnit tests, but won't be present when I'm debugging the application itself.

This is exactly what I'd like to achieve now, but without M2Eclipse or Maven. Is there a way to do this in plain Eclipse? (Possibly without installing any plugins.)

like image 660
Lóránt Pintér Avatar asked Jul 15 '09 09:07

Lóránt Pintér


People also ask

What is the classpath in eclipse?

The. classpath file is used to record all the information of the project compilation environment, including: source file path, storage path of the compiled class file, dependent jar package path, running container information, dependent external project and other information.


2 Answers

You could separate all your tests into another project and add the main project as a dependency (Project->Properties->Java Build Path->Projects->Add...)

Update: To avoid changing the original project structure, your test projects can use linked locations.

Create the test project as normal, you now need to create a linked resource to bring in the src/test/java folder. It is best to create it using a variable so that your projects can retain some platform independence. To create a new linked folder select New->Folder, input src in the folder name: field then click Advanced>>

Click Link to folder in the file system Click on Variables... to bring up the Select Path Variable dialogue.

If this is your first time, or you are linking to a new location select New... and give the variable a sensible name and path. If all your projects are located in c:\workspaces\foo** it makes sense to call the variable **WORKSPACE_ROOT and give it that path. If you have some other convention that is fine, but it makes sense to put a comment in the .project file so someone has a chance of figuring out what the correct value should be.

Assuming the values above you can now set a value of WORKSPACE_ROOT/[subject project name]/src on the input field

Once you confirm that you should see the src folder with a little arrow, and if you look in the .project file see something like this:

<linkedResources>
    <link>
        <name>src</name>
        <type>2</type>
        <locationURI>WORKSPACE_ROOT/esf-ns-core-rp/src</locationURI>
    </link><!--NOTE the WORKSPACE_ROOT variable points to the folder containing the subject project's sandbox-->
</linkedResources>

You can now add the src/test/java folder as a source location as normal.

Note you can also share just the src/test/java folder by changing the config to something like this:

<linkedResources>
    <link>
        <name>src/test/java</name>
        <type>2</type>
        <locationURI>WORKSPACE_ROOT/my-project/src/test/java</locationURI>
    </link>
</linkedResources>

This gives more control over the config, but you would have to repeat for src/test/resources, src/it/java etc.

You then set all the test dependencies only in the test project.

Very not pretty, but it does work (I've also used this where my test compliance level is different to the main compliance level, e.g. 1.5 for tests, but 1.4 for the target environment).

like image 103
Rich Seller Avatar answered Oct 03 '22 09:10

Rich Seller


I'm afraid the answer is that you can't. There are 2 open issues which were postponed from 3.5 related to your problem:

  • Ability to mark source folder as test sources
  • [buildpath] Should be able to ignore warnings from certain source folders
like image 45
Robert Munteanu Avatar answered Oct 03 '22 10:10

Robert Munteanu