Fedora Repository 3 Documentation
Page not found

Deprecated Document

This document is being revised. Fedora development has now moved to Git and the sources are hosted on GitHub. The Subversion-related content of this article is no longer valid. There is a separate article on Git integration including Maven. However, a number of other Eclipse configuration instructions are not covered in that article. So the two article are being merged. Further, Eclipse has now released Indigo that incorporates M2Eclipse with direct support of git.

Eclipse is a popular integrated development environment (IDE) which is used by many developers for the Fedora Repository service, clients and other related services. You do not need to build the Fedora Repository from source in Eclipse in order to build your own projects though it may be convenient. You may build the Fedora Repository from the command line and just use Eclipse for editing and debugging. The options are too numerous for one article so we will describe just a few popular configurations to get you started.

The current Fedora Repository trunk (Fedora 3.3 and greater) uses Apache Maven for building the source. Maven helps manage dependencies and makes project information readily available. You can build Fedora using Maven from the command line or within Eclipse. Like Eclipse, Maven is based on the idea of using "convention over configuration." While Maven is very flexible, it promotes good modularization practices which should make using Eclipse for Fedora easier.

Fedora development has now moved to Git and the sources are hosted on GitHub.

This article uses the Fedora Repository service as an example. It is important that you read the Installation and Configuration Guide first. It contains a significant amount of information about the Fedora Repository and building it from source which is not repeated here. Fedora has been built using the last three releases of Eclipse however this article uses Indigo, the latest release, as an example. Use of Indigo has substantial advantages since Maven support through m2e plug-in (formerly called M2Eclipse) is fully integrated with Git support (through the EGit plug-in).

Eclipse Helios

There is a known problem which causes lockup with the Sun JDK 1.6.0_21 but is resolved in the current Helios download and also has a manual workaround. Note that this problem still exists in Galileo and Ganymede. We have performed a successful build from Helios on Ubuntu Linux, Window XP and Windows 7 with Git and M2Eclipse installed.

On this page:

Installing the JDK

Fedora is only tested with the Sun JDK though others may work well or even be required for a particular operational environments such as specific application servers. Eclipse has a very sophisticated structure which supports the installation and use of multiple Java compilers and run time environments. Initially, we recommend installing the Sun JDK to get success and then you may explore other options.

The Oracle/Sun JDK may be obtained from here for common platforms. Fedora is developed using Java 1.6. It is not required that Eclipse be running in the same JDK/JRE version as is being used for development but it is convenient if you use the same JDK/JRE version on the command line as you are using for Eclipse. Note that a JDK is required for some operations of the M2Eclipse plug-in described below.

It is also convenient for you install the JDK outside "Program Files" if you are developing in Microsoft Windows, using a directory with no spaces in the name. Eclipse and the Fedora command-line Maven-based build tools will work with proper set-up but you will have less trouble if you avoid directories with spaces in their names. Also, very long directory structures may be found in Eclipse projects and generally don't cause problems with Eclipse, but may cause problems with other products in Windows XP. So having a top-level Workspaces directory is helpful.

Install Eclipse

Download and install Eclipse. You may install any package since you can add plug-ins later but it is convenient to install the "Eclipse IDE for Java EE Developers" since it already contains most of the plug-ins you may want to use. It is recommended that you install the JDK separately since you may wind up using several versions.

Select the JDK and Set the Compiler Compliance

Make sure Java 1.6 appears as an installed JRE and that it is the default JRE for the project.

A) Use the Eclipse Menu: Window -> Preferences -> Java -> Installed JREs. Despite the name of the menu item it is highly recommended that you install JDKs. Use of a JDK is required for the M2Eclipse Maven plug-in described below. Use the Add button to add the Java 1.6 JDK if it is not already installed. Check the Java 1.6 JDK and press OK.

B) Use the Eclipse Menu: Window -> Preferences -> Java -> Compiler. Select 1.6 in the Compiler compliance level: combo box and press Apply.

Configure Maven

The M2Eclipse plug-in includes an embedded Maven. Optionally you can also install Maven on the command-line. Regardless, you must have a local Maven repository to cache dependencies and work products from the builds. A command-line Maven can be obtained from http://maven.apache.org/. If Eclipse cannot find the local Maven repository you will have ugly errors and Eclipse may lock-up.

Duraspace provides a Maven repository for Fedora dependencies which cannot be obtained from Maven Central or common public Maven repositories. You do not have to do anything to use this repository, everything is handled by Maven from specifications in the POMs.

Maven will look for the repository in several standard locations. However, you can make things easier if you create a setting file. Settings may be obtained globally from the Maven installation or in a settings file associated with your user. The user settings file varies depending on the operating system (in Windows - "Documents and Settings\username\.m2\settings.xml", in Linux - "home/username/.m2/settings.xml"). The global setting file is usually in <maven-install>/conf. If you install a command-line Maven you may accidentally wind up with two local Maven repositories. Just make sure everything points to the same local repository. If you have problems may help to set the environment variable M2_HOME to <maven-install> and put <M2_HOME>/bin on your path.

Example user settings.xml

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository>d:/m2/repository</localRepository>
</settings>

Example global settings.xml

<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->

<!--
 | This is the configuration file for Maven. It can be specified at two levels:
 |
 |  1. User Level. This settings.xml file provides configuration for a single user,
 |                 and is normally provided in ${user.home}/.m2/settings.xml.
 |
 |                 NOTE: This location can be overridden with the CLI option:
 |
 |                 -s /path/to/user/settings.xml
 |
 |  2. Global Level. This settings.xml file provides configuration for all Maven
 |                 users on a machine (assuming they're all using the same Maven
 |                 installation). It's normally provided in
 |                 ${maven.home}/conf/settings.xml.
 |
 |                 NOTE: This location can be overridden with the CLI option:
 |
 |                 -gs /path/to/global/settings.xml
 |
 | The sections in this sample file are intended to give you a running start at
 | getting the most out of your Maven installation. Where appropriate, the default
 | values (values used when the setting is not specified) are provided.
 |
 |-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <!-- localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ~/.m2/repository
  <localRepository>/path/to/local/repo</localRepository>
  -->
  <localRepository>d:/m2/repository</localRepository>

  <!-- interactiveMode
   | This will determine whether maven prompts you when it needs input. If set to false,
   | maven will use a sensible default value, perhaps based on some other setting, for
   | the parameter in question.
   |
   | Default: true
  <interactiveMode>true</interactiveMode>
  -->

  <!-- offline
   | Determines whether maven should attempt to connect to the network when executing a build.
   | This will have an effect on artifact downloads, artifact deployment, and others.
   |
   | Default: false
  <offline>false</offline>
  -->

  <!-- pluginGroups
   | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
   | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
   | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
   |-->
  <pluginGroups>
    <!-- pluginGroup
     | Specifies a further group identifier to use for plugin lookup.
    <pluginGroup>com.your.plugins</pluginGroup>
    -->
  </pluginGroups>

  <!-- proxies
   | This is a list of proxies which can be used on this machine to connect to the network.
   | Unless otherwise specified (by system property or command-line switch), the first proxy
   | specification in this list marked as active will be used.
   |-->
  <proxies>
    <!-- proxy
     | Specification for one proxy, to be used in connecting to the network.
     |
    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>proxyuser</username>
      <password>proxypass</password>
      <host>proxy.host.net</host>
      <port>80</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
    -->
  </proxies>

  <!-- servers
   | This is a list of authentication profiles, keyed by the server-id used within the system.
   | Authentication profiles can be used whenever maven must make a connection to a remote server.
   |-->
  <servers>
    <!-- server
     | Specifies the authentication information to use when connecting to a particular server, identified by
     | a unique name within the system (referred to by the 'id' attribute below).
     |
     | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are
     |       used together.
     |
    <server>
      <id>deploymentRepo</id>
      <username>repouser</username>
      <password>repopwd</password>
    </server>
    -->

    <!-- Another sample, using keys to authenticate.
    <server>
      <id>siteServer</id>
      <privateKey>/path/to/private/key</privateKey>
      <passphrase>optional; leave empty if not used.</passphrase>
    </server>
    -->
  </servers>

  <!-- mirrors
   | This is a list of mirrors to be used in downloading artifacts from remote repositories.
   |
   | It works like this: a POM may declare a repository to use in resolving certain artifacts.
   | However, this repository may have problems with heavy traffic at times, so people have mirrored
   | it to several places.
   |
   | That repository definition will have a unique id, so we can create a mirror reference for that
   | repository, to be used as an alternate download site. The mirror site will be the preferred
   | server for that repository.
   |-->
  <mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
  </mirrors>

  <!-- profiles
   | This is a list of profiles which can be activated in a variety of ways, and which can modify
   | the build process. Profiles provided in the settings.xml are intended to provide local machine-
   | specific paths and repository locations which allow the build to work in the local environment.
   |
   | For example, if you have an integration testing plugin - like cactus - that needs to know where
   | your Tomcat instance is installed, you can provide a variable here such that the variable is
   | dereferenced during the build process to configure the cactus plugin.
   |
   | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles
   | section of this document (settings.xml) - will be discussed later. Another way essentially
   | relies on the detection of a system property, either matching a particular value for the property,
   | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a
   | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.
   | Finally, the list of active profiles can be specified directly from the command line.
   |
   | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact
   |       repositories, plugin repositories, and free-form properties to be used as configuration
   |       variables for plugins in the POM.
   |
   |-->
  <profiles>
    <!-- profile
     | Specifies a set of introductions to the build process, to be activated using one or more of the
     | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>
     | or the command line, profiles have to have an ID that is unique.
     |
     | An encouraged best practice for profile identification is to use a consistent naming convention
     | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.
     | This will make it more intuitive to understand what the set of introduced profiles is attempting
     | to accomplish, particularly when you only have a list of profile id's for debug.
     |
     | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.
    <profile>
      <id>jdk-1.4</id>

      <activation>
        <jdk>1.4</jdk>
      </activation>

      <repositories>
        <repository>
          <id>jdk14</id>
          <name>Repository for JDK 1.4 builds</name>
          <url>http://www.myhost.com/maven/jdk14</url>
          <layout>default</layout>
          <snapshotPolicy>always</snapshotPolicy>
        </repository>
      </repositories>
    </profile>
    -->

    <!--
     | Here is another profile, activated by the system property 'target-env' with a value of 'dev',
     | which provides a specific path to the Tomcat instance. To use this, your plugin configuration
     | might hypothetically look like:
     |
     | ...
     | <plugin>
     |   <groupId>org.myco.myplugins</groupId>
     |   <artifactId>myplugin</artifactId>
     |
     |   <configuration>
     |     <tomcatLocation>${tomcatPath}</tomcatLocation>
     |   </configuration>
     | </plugin>
     | ...
     |
     | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
     |       anything, you could just leave off the <value/> inside the activation-property.
     |
    <profile>
      <id>env-dev</id>

      <activation>
        <property>
          <name>target-env</name>
          <value>dev</value>
        </property>
      </activation>

      <properties>
        <tomcatPath>/path/to/tomcat/instance</tomcatPath>
      </properties>
    </profile>
    -->
  </profiles>

  <!-- activeProfiles
   | List of profiles that are active for all builds.
   |
  <activeProfiles>
    <activeProfile>alwaysActiveProfile</activeProfile>
    <activeProfile>anotherAlwaysActiveProfile</activeProfile>
  </activeProfiles>
  -->
</settings>

Install a Subversion Client

It is recommended that you install a Subversion plug-in, either Subversive or Subclipse (use only one or bad things will happen), even if you only intend to build from the command-line. Installing a Subversion plug-in enables you to see the history of files and often is required for advanced functions of other plug-ins. Unfortunately, some plug-ins may work only with Subversive or Subclipse but not both. Please provide comments on this article regarding your experience.

A Subversion plug-in is required for a number of functions in the Maven plug-in M2Eclipse described below. Subclipse is provided by the same organization as M2Eclipse however Subversive integration with M2Eclipse is available and in our testing seems to support all common operations. Also, Subversive is the incubated Eclipse plug-in.

Many developers use a command-line svn or graphical Subversion client such as Tortoise as their primary SCM client. Building from the command-line and using Eclipse primarily for editing, debugging, and other functions is a common approach for developing Fedora Commons projects (see Building the Fedora Repository). However, it is still very helpful to have a Subversion plug-in installed. One Maven plug-in we use to automatically creates build numbers, buildnumber-maven-plugin, and depends on having a command-line Subversion available, but will only generate a warning which can be ignored if one is not present.

In the following example we show the steps for using Subversive. Installing Subversive is a bit complicated and is changing as it is moving through Eclipse incubation. Once you have installed a Subversion client the following steps may be used to customize your Eclipse settings and to link to the Fedora Subversion repository. Note that some of the steps can only be accomplished after you have downloaded the Fedora sources preferably using Subversion. Don't worry, just get them done before you start editing or building the code.

A) Use the Eclipse Menu: Window -> Open Perspective -> Other. Using the Open Perspective dialog select SVN Repository Exploring and press Apply.

B) Use the right-mouse click menu or the Eclipse Menu: File -> New -> Repository Location. Enter the URL of the Subversion repository (no authentication is needed to download), optionally add a custom label and press OK.

C) Currently the Fedora Repository Project Subversion repository is located at: https://fedora-commons.svn.sourceforge.net/svnroot/fedora-commons/fedora on Sourceforge.net. After you have successfully define the repository location you should be able to see its trunk, branches, and tags.

D) Use the Eclipse Menu: Window -> Preferences -> Team -> SVN -> Properties Configuration. On the Automatic Properties tab import resources/devdocs/devenv/subversion.config from the Fedora Repository sources and press Apply. Please note, its best to do this step later after you have installed M2Eclipse and downloaded the project.

Install the M2Eclipse Plug-in

There are Eclipse targets built into Maven but the M2Eclipse from Sonatype provides a capable and well documented addition to your Eclipse IDE. It is highly recommended that you install it. The installation is well documented and there is an online book Developing with Eclipse and Maven that is highly recommended reading. Note that the installation process only documents the use of Subclipse, another Sonatype contribution. However, there is a Subversive integration available which in our testing supports common used M2Eclipse functionality (you must install the Subversive Integration for the M2Eclipse Project plug-in here).

M2Eclipse will complain if you are not running Eclipse within a JDK are instead using a stand-alone JRE. This will require you to edit the eclipse.ini file found in top-level director of your Eclipse installation. The formatting of this file is tricky and unforgiving. Below is an example from a Windows installation:

-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vm
c:/java/jdk1.6.0_13/bin/javaw.exe
-vmargs
-Dosgi.requiredJavaVersion=1.6
-Xms512m
-Xmx1024m

Create an Eclipse Project

You must create an Eclipse project for Fedora. The layout of the Fedora Repository source pre-dated the use of Eclipse and does not follow the most natural layout for Eclipse projects. However, Eclipse can be configured to be an effective IDE for development. The ongoing refactoring for Maven is making it more natural to build using Eclipse and enabling the use of Eclipse plug-ins. There are actually too many ways to configure Eclipse for us to document here. We will, however, illustrate one common configuration which you may use (and challenge the community to add more options to this article).

Eclipse Friendliness

Refactoring of Fedora is underway to improve modularity which will help make Fedora more Eclipse friendly. Code sections have been entirely restructured to build with Maven. However, there is still work to be done in refactoring Fedora to improve modularity. You can follow this ongoing effort now in this Wiki and JIRA. The work at ANT to Maven2 is concluded.

There is an easy way to create the Fedora Repository project with M2Eclipse. First you must specify the repository location using the SVN Repository Exploring perspective. Then using the Checkout as Maven Project wizard you will create the fedora-repository project and import the source code. As a prerequisite, we assume you have already successfully configured the Subversion client in Eclipse, installed M2Eclipse and configured your local Maven repository. The following example uses the Subclipse plug-in.

  1. Set up the Subversion Repository
  2. Select the trunk or the branch with which you wish to work
  3. Use the Check Out as Maven Project Wizard
  4. Create a Maven Run As Maven Build configuration
  5. Use the Run As Maven Build configuration to build the project the first time

Set Up the Source Repository and Create the Project

A) In a fresh install of Eclipse you will see the Welcome screen. It will help if you use the Eclipse Menu: Project -> Build Automatically to uncheck this function. We will use the Maven build for the first build of the repository.

B) Using the Eclipse Menu: Select the Window -> Open Perspective -> SVN Repository Exploring open the perspective.

C) You should see the following perspective:

D) Right click in SVN Repositories view to display the Add SVN Repository dialog. Use the URL https://fedora-commons.svn.sourceforge.net/svnroot/fedora-commons/fedora.

E) Open the repository and select the trunk or a desired branch. This may take some time depending on the response of the Subversion repository.

F) Right click to display the SVN menu and select Check out as Maven Project...

G) Select the target location and revision. If you do not see svn as a choice in the SCM URL combo box Subclipse is not correctly set up. Dialogs for Subversive may be different. If you have only one repository, the dialog will already be populated. Otherwise select the Fedora Subversion repository URL. Typically you will check out the Head Revision and Check out All projects. Open the Advanced drop down and select Resolve Workspace Projects and Separate projects for modules. This will create a separate Eclipse project for each Maven pom which you may find useful later.

H) Select the Next> button to display the Select Project Location dialog. It is a personal preference where the workspace will be created on your workstation. If you have other project in the same workspace you may want to set up a working set just for the Fedora Repository (e.g. fcrepo) though you can to this later too. Select the Finish button and the wizard will complete its operations. This may take some time because the wizard must create the Eclipse project(s), download the sources, and download the Maven dependencies to your local repository. If this process seems to hang you may be having problems with the configuration of your local Maven repository. If this happens you may be able to kill Eclipse, correct the problem and use the Update Maven Dependencies feature of M2Eclipse. Otherwise, delete the project and start again using the Check out as Maven Project... wizard.

Set up the Maven Run As Configuration and Build the Project

I) Switch to the Java perspective to set up the run configurations.

J) You will notice a number of projects, one for each Maven pom. Using this approach lets you make Eclipse settings for each module. The name of the top-level project is automatically set to fcrepo and M2Eclipse will have already make key Eclipse project settings for you.

K) There are two ways to create a new Run Configuration from the Java perspective. You can right click on the fcrepo project to start the new Run Configuration dialog.

L) Alternately, you can use the Eclipse Menu: Run -> Run Configurations ...

M) Start the Maven Run Configuration dialog using a right click on Maven Build and selecting the new menu item.

N) You will see the Run Configuration dialog. Using a Maven run configuration is exactly the same as running a Maven build from the command line. Later we will show how to use more of the Eclipse build features but for the first build lets use a basic run configuration. Give the configuration a name, set the base directory and the goals which build the entire repository. Press the Apply button to save the configuration (notice the name will be added to the list of Maven run configurations in the left panel of the dialog.

O) Check that the JRE is set to the Sun Java 1.6 initially. After you have a successful build you may also want to build and test under other JREs. Press the Apply button to save the configuration and press the Run button to start the build.

P) Since Fedora uses generated code and Maven will update the project structure it is helpful to refresh the project display after each build. This may not be fully sufficient so you also may need to update select Maven configurations after a build (see Update Maven Projects)

Q) You can add additional Maven run configurations for individual modules, other goals and integration tests. Note for the integration tests you will need a compatibly configured running Fedora Repository.

R) Congratulations! You have succeeded in you first Maven build of Fedora.

S) Update Maven Configuration

Since Fedora uses generated code and Maven will update the project structure it is sometime necessary to manually update selected projects helpful. After the first build and if there are any changes to the common or generated code right click on the common and fedora-admin-client projects. Use the Maven -> Update Maven Configuration menu item to refresh the project.

M2Eclipse has a number of options for deploying projects but its handling of hierarchical projects is not complete. Since Fedora is a hierarchical project, it takes a little experience but Eclipse will work properly if permitted. Using the default M2Eclipse configuration is best. It presents subproject POMs as ordinary appropriate (usually Java) Eclipse projects in the workspace separately for each POM. It you use this configuration, the Eclipse functionality will work well. However, you will see both the hierarchical POM projects and the Java Projects in the project explorer views. If you look at the source directly you will see a normal directory hierarchy. M2Eclipse will use information from the POM to create functional Eclipse projects (setting up the .project and .classpath files). You can build equally using Eclipse Maven configuration or from the command line.

Customize the Workspace Settings

It is helpful if you customize the workspace settings. The coding standards settings are agreed to by the committers. Contributors are asked to use of the same settings if possible to help facilitate the acceptance process. You will have customize the workspace setting each time you create a new workspace or use the Copy Workspace Setting feature once you have your first workspace set up. Many of the settings can be loaded from files in the source distribution. To set up your workspace (code style settings, etc):

  • See resources (Fedora post 3.3) <fedora-repository>/resources/doc/devdocs/devenv/README.txt

The next video shows how to prepare the Eclipse IDE for development of the Fedora Repository source code.

This video was prepared using Europa but generally will work for Eclipse Galileo and Ganymede also. There are small differences in the IDE versions and their dialogs. These instructions and screen images below were prepared with Ganymede and we are adding Galileo.

To set up Eclipse (Helios, Galileo and Ganymede):

It is recommended that you use to Eclipse Helios or Galileo (this section has been tested for Helios and Galileo - some small differences will be encountered). You must install Eclipse and a compatible Java JDK prior to beginning this configuration. Also you need to obtain a set of configuration files which are located in the Fedora Repository source.

A) Use the Eclipse Menu: Window -> Preferences -> Java -> Code Style

Under the top-level Code Style section:

  1. Check "Add @Override ...", and leave other checkboxes unchecked
  2. Make sure "Exception variable name" is e

B) Import the configurations files for the Clean Up, Code Templates, Formatter and Organize Imports from the build directory in the Fedora Repository source.

  1. Under the Clean-up section import fedora-cleanup.xml and press Apply
  2. Under the Code Templates section import fedora-codetemplates.xml and press Apply
  3. Also under the Code Templates section in Comments -> Types edit Types to replace "Firstname Lastname" with your own name and press Apply
  4. Under the Formatter section import fedora-formatter.xml and press Apply
  5. Under the Organize Imports section import fedora.importorder and press Apply

C) Use the Eclipse Menu: Window -> Preferences -> Java -> Editor -> Save Actions

  1. Select "Perform the selected actions on save"
  2. Make sure "Additional Actions" is selected
  3. Click "Configure...", and go to the "Code Organizing" tab, and make sure "Remove trailing whitespace" and "All lines" are selected

Optional Settings

Fedora makes use of WSDL generated Java classes. Without these, Eclipse will complain loudly. There are problems with refreshing in Eclipse that make generated code a source of some difficulties. Also, the Eclipse builder provides substantial feedback such as errors and warnings that can aid in coding but can also be overwhelming.

A) Use the Eclipse Menu: Window -> Preferences -> Team -> Ignored Resources

Add target, .settings, .classpath and .project and press the Apply button.

B) In the Problems view add a filter for warnings and errors. Use the Configure Contents menu item. Press the New button to create a filter configuration. Provide a name for the filter. Uncheck WSDL Problem, XML Problem, XML Schema Problem and XSL Problem in the Types subpanel. If you created a working set you may want to apply the filter to it. Otherwise select and appropriate scope. Press the Ok button to create the filter.

C) Use the Eclipse Menu: Window -> Preferences -> Java -> Compiler -> Errors/Warnings and open the Deprecated and Restricted API dropdown. Set the Forbidden reference (access rules) combo box to Warning. Press the Apply or Ok button to save the settings. This may start a full rebuild.

Installing from the Command-Line

  1. Make sure you have a fresh checkout from Subversion.
  2. If you have not previously built do it now.
  3. After a successful build create the installer (or use the -P installer in the build configuration).
  4. Copy the installer from the <workspace>/fedora-repository>/installer/target to an install directory.
  5. Run the installer to create an initial deployment (see the Installation and Configuration Guide). You should use a different directory from your Eclipse workspace for now. You may choose any configuration but use the Quick install until you have more experience.
  6. Start and stop the server once to ensure the configuration is correct and the /path/to/tomcat/webapps/fedora directory is created. This will permit the installer to set up the initial configuration which is difficult to do manually.

Known Issues

  1. Eclipse creates META-INF/MANIFEST.MF files
    1. https://issues.sonatype.org/browse/MNGECLIPSE-671
    2. https://bugs.eclipse.org/bugs/show_bug.cgi?id=285510
    3. http://www.nabble.com/New-files-added-to-src-tree-on-Maven-import-td24772549.html
  2. New or renamed modules are not updated in Eclipse project layout
    1. http://www.nabble.com/New-modules-and-SCM-headaches.-td22167868.html

Related Materials

Building Fedora from Source Video
How do I configure Eclipse to work with pre 3.3 versions of Fedora?


Eclipse with Maven notes

These are the steps I followed to get Fedora building correctly in Eclipse -- Eddie (6 Nov 2009)

Tested with:

  1. Add the fedora svn repository to Eclipse (https://fedora-commons.svn.sourceforge.net/svnroot/fedora-commons/fedora)
  2. Optional: create a new working set for Fedora (e.g. fcrepo)
  3. Checkout trunk as a Maven project (if you created a working set, check out into the working set)

  4. Update Project Configuration (using the Maven menu) for common and fedora-admin-client projects
  5. Add target, .settings, .classpath, .project to Ignored Resources (Preferences/Team)
  6. Java Compiler Errors
  7. Filter Problems

Known Issues

  1. Eclipse creates META-INF/MANIFEST.MF files
    1. https://issues.sonatype.org/browse/MNGECLIPSE-671
    2. https://bugs.eclipse.org/bugs/show_bug.cgi?id=285510
    3. http://www.nabble.com/New-files-added-to-src-tree-on-Maven-import-td24772549.html
  2. New or renamed modules are not updated in Eclipse project layout
    1. http://www.nabble.com/New-modules-and-SCM-headaches.-td22167868.html
#trackbackRdf ($trackbackUtils.getContentIdentifier($page) $page.title $trackbackUtils.getPingUrl($page))
  • No labels

4 Comments

  1. Below are the minimal instructions that worked for me today, with a fresh trunk checkout.

    Note: This method differs from the above instructions most notably in that:

    • It does NOT "Resolve Workspace Projects" as is the default option when creating/importing a Maven-based project.  Unfortunately, I wasn't able to get it working with this option enabled.  Disabling it means that you have to "mvn install" the projects manually to get inter-project dependencies to be picked up correctly.
    • It uses the Import... option to pull in an existing working copy of trunk rather than having Eclipse do the checkout for you. This is just a personal preference.

    A. Prerequisites

    • A Computer (pretty much any one will work, I'm using a Commodore 64)
    • Eclipse 3.5 (any edition, I'm using the Java EE one)
    • Maven 2.0.9 or above (I'm using 2.2.0)
    • Commandline SVN client (I'm using 1.6.6)

    B. Set Up Eclipse

    1. Install M2Eclipse and Subversive with SVNKit 1.3 (same URLs as Eddie used above)
    2. Add the following URL in the SVN Repositories view: https://fedora-commons.svn.sourceforge.net/svnroot/fedora-commons/fedora
    3. From a fresh trunk checkout, follow the instructions in resources/doc/devdocs/devenv/README.txt
    4. In Preferences, change Java -> Compiler -> Errors/Warnings -> Deprecated and restricted API -> Forbidden reference (access rules) to "Warning"

    C. Import Your Working Copy of Trunk

    This is a personal preference; you can also follow the instructions above to check out and create the project in one step, from within Eclipse.

    1. Run "mvn clean install -P fedora-installer".  This will put all fedorarepo-* artifacts in your local maven repository (e.g. ~/.m2/repository)
    2. Go to File -> Import, select General -> Maven Projects, and click Next
    3. Browse to the path of your local trunk checkout
    4. Under Advanced, UN-select "Resolve Workspace Projects"
    5. Click Finish.  This should create a series of fedorarepo- projects in your workspace.

    D. Resolve Initial Errors

    After the initial, automatic build by Eclipse, some fedorarepo- projects might have compile errors due to unresolved dependencies. For each such project, right click on it (you can multi-select) and select Maven -> Update Project Configuration.

    After this step, you should have about a million warnings but no compile errors.

  2. Since many users prefer command-line SVN, there is another option to combine the two methods. If you let M2Eclipse and your Eclipse SVN plug-in do the initial checkout, it will setup Eclipse projects and classpaths for you. However, if you look at the local workspace/project storage you will see an ordinary SVN tree. Both command-line SVN and Tortoise work perfectly well directly on the project storage. You can even use the command-line Maven build if you have a command-line Maven installed.

    Unfortunately, any changes you make from the command-line may not be reflected in Eclipse unless you refresh either using a "refresh" command or exiting/restarting Eclipse. Also, if you have created an Eclipse project for each POM, M2Eclipse will not automatically be created. This is also true when adding POMs or refactoring in Eclipse and is a requested feature to be added to M2Eclipse.

    1. A follow-on point:  If you're developing on a Windows machine, the limits on the maximum length of relative file paths may prevent you from successfully checking the project out in Eclipse.  Checking out from the command line will allow you to specify an absolute path, which will circumvent the issue.

  3. Version 0.10.2 greatly improved handling of hierarchical Maven projects though IDEA still handles this better. To some extent the Update Project functionality works properly and the "Resolve Workspace Artifact" now works correctly if the M2Eclipse is permitted to use the default settings (creating a project for each POM). Be careful with this feature if you are also using the local Maven repository "install" feature since the workspace resolution will be used first (sometimes exactly what you want and sometime not).

    Regardless, it is often quickest to delete the project and update re-import it if significant changes have been made. Maven makes this approach very easy and reliable. Just be sure to NOT delete the source from the workspace until you are deleting the top level project or even afterwards from the command line. You can still clean up but if you wait to delete the sources last.

    Also, don't try to upgrade from an earlier version of M2Eclipse. Remove it from Eclipse and any Maven projects. Install the new version and reload Fedora. It is theoretically possible to do an upgrade but this is easier, faster, and more reliable (imo).