Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Google Summer of CodeImage Modified

Summary

The aim of this page is to describe my work during the Google Summer of Code project on Fedora Repository. I have divided this page into x subcategories depending on into which part of "project's life cycle" it belongs. I have created the topic branch for this purpose in Git and all my changes are available from https://github.com/Jiri-Kremser/fcrepo/tree/fcrepo-452.

...

CXF can be attached by Maven to the fcrepo project in several ways:

Anchor
dep1
dep1

1. two (three with embedded Jetty) Maven artifacts

...

Code Block
<dependency>
  <groupId>org.apache.cxf</groupId>
  <artifactId>cxf-bundle</artifactId>
  <version>${cxf.version}</version>
  <exclusions>
    <exclusion>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
    </exclusion>
  </exclusions>
</dependency>

Anchor
dep3
dep3

3. one Maven artifact with "minimal-bundled" CXF

...

If the name of the CXF jar bundle is changed (it is imo not likely) or Fedora start to use dependency system as I proposed in 1. or 2., the value in this config has to be changed in order to allow the Swing client to run.

...