From Fedora Project Wiki

(Add categories)
No edit summary
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
These guidelines are laid out in order of relevance to packaging.
These guidelines are laid out in order of relevance to packaging.


== Introduction ==
== Introduction ==
=== Background ===
Traditionally, Java implementations have been available under a non-free license.  Free software clean room implementations of the class library largely centred around GNU Classpath.  GCJ, a Java frontend for GCC, allowed for native compilation of Java software.  In 2007, Sun released its reference implementation of Java under the GPL+Classpath exception as OpenJDK.  This included the bytecode interpreter, just-in-time (JIT) compiler (Hotspot), and the majority of its class library.  Due to the remaining small proprietary encumbrances, a project known as IcedTea was formed to build OpenJDK with entirely free tools, and provides Free software plugs for the encumbered pieces of the class libraries.  Recent (early 2008) developments have enabled Fedora to ship a package under the OpenJDK name.


=== The Basics ===
=== The Basics ===
The term Java means many things to many people:  a class library, a bytecode interpreter, a JIT compiler, a language specification, etc.  For the vast majority of users and developers, Java is a programming language and runtime environment that is architecture- and OS-agnostic.  The normal flow of code is <code>.java</code> (source file) ’ <code>.class</code> (Java bytecode) ’ <code>.jar</code> (a zip archive).  In the majority of cases, a user executes a Java program by specifying a class name containing a main method (just like C and C++).  Often, this is done by invoking the <code>java</code> binary with a list of JAR files specifying the classpath like so:
The term Java means many things to many people:  a class library, a bytecode interpreter, a JIT compiler, a language specification, etc.  For the vast majority of users and developers, Java is a programming language and runtime environment that is architecture- and OS-agnostic.  The normal flow of code is <code>.java</code> (source file) <code>.class</code> (Java bytecode) <code>.jar</code> (a zip archive).  In the majority of cases, a user executes a Java program by specifying a class name containing a main method (just like C and C++).  Often, this is done by invoking the <code>java</code> binary with a list of JAR files specifying the classpath like so:


<code>java [-cp <jar1:jar2:jar3>]  <main-class> [<args>] </code>
<code>java [-cp <jar1:jar2:jar3>]  <main-class> [<args>] </code>
Line 13: Line 13:
== Java Packaging ==
== Java Packaging ==
The [http://www.jpackage.org JPackage Project]  has defined standard file system locations and conventions for use in Java packages.  Many distributions have inherited these conventions and in the vast majority of cases, Fedora follows them verbatim.  We include relevant sections of the JPackage guidelines here but caution that the canonical document will always reside upstream:  [http://www.jpackage.org/cgi-bin/viewvc.cgi/src/jpackage-utils/doc/jpackage-1.5-policy.xhtml?revision=HEAD&root=jpackage JPackage Guidelines]  .  Over time, we would like to remove any divergences in these documents, but where they are different, these Fedora guidelines will take precedence for Fedora packages.
The [http://www.jpackage.org JPackage Project]  has defined standard file system locations and conventions for use in Java packages.  Many distributions have inherited these conventions and in the vast majority of cases, Fedora follows them verbatim.  We include relevant sections of the JPackage guidelines here but caution that the canonical document will always reside upstream:  [http://www.jpackage.org/cgi-bin/viewvc.cgi/src/jpackage-utils/doc/jpackage-1.5-policy.xhtml?revision=HEAD&root=jpackage JPackage Guidelines]  .  Over time, we would like to remove any divergences in these documents, but where they are different, these Fedora guidelines will take precedence for Fedora packages.
TODO: Find the proper jpackage link and fix it.


=== Package naming ===
=== Package naming ===


Packages '''MUST''' follow the standard Fedora [[Packaging/NamingGuidelines]] . Java API documentation '''MUST''' be placed into a sub-package called <code>%{name}-javadoc</code>.
Packages '''MUST''' follow the standard Fedora [[Packaging/NamingGuidelines]].
 
Java API documentation '''MUST''' be placed into a sub-package called <code>%{name}-javadoc</code>.


==== Release tags ====
==== Release tags ====
For now, refer to the [[Packaging/JPackagePolicy]] for release tags. That document should eventually be folded into this one.
Packages '''MUST''' follow the standard Fedora [[Packaging/NamingGuidelines#Package_Version | Package versioning guidelines]].
 
=== JAR file installation ===
 
The following applies to all JAR files except [[#JNI|JNI-using JAR files]], [[#GCJ|GCJ files]] and application-specific JAR files (ie. JAR files that can only reasonably be used as part of an application and therefore constitute application-private data).
 
==== Split JAR files ====
 
If a project offers the choice of packaging it as a single monolithic jar or several ones, the split packaging '''should''' be preferred.


=== Jar file naming ===
==== Filenames ====


# If a package provides a single JAR file it must have the same name as the package itself.
* If the package provides a '''single''' JAR and the filename provided by the build is <code>%{name}.jar</code> or <code>%{name}-%{version}.jar</code> then filename <code>%{name}.jar</code> '''MUST''' be used.
* If the package provides a '''single''' JAR and the filename provided by the build is neither <code>%{name}-%{version}.jar</code> nor <code>%{name}.jar</code> then this file '''MUST''' be installed as <code>%{name}.jar</code> and a symbolic link with the usual name must be provided.
* If the package provides more than '''one''' JAR file, the filenames assigned by the build '''MUST''' be used (without versions).
* If the project usually provides alternative JAR file names by installing symbolic links then such symlinks '''MAY''' be installed in the same directory as the JAR files.


ex. <code>jaf.jar</code>
{{admon/note|Note|Here %{name} refers either to package name, or name of subpackage where the jar is installed.}}


# If the project name and the commonly used JAR filename differ, a symbolic link with the usual name must also be provided.
==== Installation directory ====


ex. Single JAR complete naming.  Project name is <code>jaf</code>, common name is <code>activation</code>.
* All architecture-independent JAR files '''MUST''' go into <code>%{_javadir}</code> or a Java-version specific directory <code>%{_javadir}-<i>*</i></code> as appropriate[http://lists.fedoraproject.org/pipermail/packaging/2010-January/006792.html]. Packages '''CAN''' place JAR files into subdirectories.


<code>activation.jar ’ jaf.jar</code>
* For installation of architecture dependent jar files, see [[#Packaging_JAR_files_that_use_JNI|Packaging JAR files that use JNI]]


# If the package provides several JAR files, the filenames assigned by the build must be used. Above symlinking rules apply.
=== Compatibility packages ===
In certain cases it might be necessary to create compatibility packages that provide older API/ABI level of the same library. However creating these compatibility packages is strongly discouraged. To standardize and simplify packaging of such compatibility packages following rules apply:


ex.  <pre>ant-1.5.3.jar
* Compatibility packages are named in the same way as original except addition of version to package name
ant-optional-1.5.3.jar</pre>
* Jar and pom files '''MUST''' be versioned
* Base name of jar and pom files '''MUST''' be the same as original package jar and pom filenames and they '''MUST''' be placed alongside original files
* Package '''SHOULD NOT''' provide maven fragments (%add_maven_depmap calls)


# If the number of provided JAR files exceeds '''two''', you must place them into a sub-directory.
{{admon/note|Ant and Maven compatibility|build-classpath and related tools will resolve versioned jar files if versioned jar is asked for. Maven will use dependency information from main package and will return versioned jar if it matches the version asked for in the pom file.}}


# If a project offers the choice of packaging it as a single monolithic jar or several ones, the split packaging should be preferred.
==== Compatibility package example ====


=== Directory structure ===
* Original package: plexus-container-2.0.0
All JAR files '''MUST''' go into <code>%{_javadir}</code>. Exceptions include [[JNI|  JNI-using JAR files]] , and application-specific JAR files (ie. JAR files that can only reasonably be used as part of an application and therefore constitute application-private data).
<pre>
Name:    plexus-container
Version: 2.0.0
...


Java API documentation uses a system known as javadoc.  All javadocs '''MUST''' be installed into <code>%{_javadocdir</code>}.
%files
...
%{_javadir}/plexus/container.jar
%{_mavenpomdir}/JPP.plexus-container.pom
%{_mavendepmapfragdir}/%{name}
...
</pre>
 
* Compat package: plexus-container1-1.5.0
<pre>
Name:    plexus-container15
Version: 1.5.0
...
 
%files
...
%{_javadir}/plexus/container-1.5.0.jar
%{_mavenpomdir}/JPP.plexus-container-1.5.0.pom
...
</pre>
 
=== Javadoc installation ===
 
* Java API documentation uses a system known as javadoc.  All javadocs '''MUST''' be created and installed into a directory of <code>%{_javadocdir}/%{name}</code>.
* Directory or symlink <code>%{_javadocdir}/%{name}-%{version}</code> '''SHOULD NOT''' exist.
* The javadoc subpackage '''MUST''' be declared <code>noarch</code> even if main package is architecture specific.


=== BuildRequires and Requires ===
=== BuildRequires and Requires ===
Line 53: Line 99:
BuildRequires:  jpackage-utils
BuildRequires:  jpackage-utils


Requires:  java >= specific_version
Requires:  java [>= specific_version]
Requires:  jpackage-utils</pre>
Requires:  jpackage-utils</pre>


Line 64: Line 110:
<code>build-classpath</code> is a script that can be used to generate classpaths from generic names of JAR files.  Example:
<code>build-classpath</code> is a script that can be used to generate classpaths from generic names of JAR files.  Example:


<pre>export CLASSPATH=$(build-classpath commons-logging commons-net)
<pre>export CLASSPATH=$(build-classpath commons-logging commons-net xbean/xbean-reflect)
</pre>
</pre>
{{admon/note|Additional information|You can use either jar filename or directory name relative to %{_javadir}, %{_jnidir} or %{_javajnidir} (all jar files will be included).}}


=== build-jar-repository ===
=== build-jar-repository ===
Line 86: Line 133:
</pre>
</pre>


=== maven ===
=== maven3 ===
<code>maven</code> is a tool used by many Java packages.  In Fedora, the package is called <code>maven2</code>.  Packages built using <code>maven</code> ship with <code>pom.xml</code> files.  They '''MUST''':
In Fedora 15 and newer, maven 3 is used and the package is called <code>maven</code>.  Packages built using <code>maven</code> ship with <code>pom.xml</code> files.  They '''SHOULD''' contain common sections such as the following:
 
<pre>Requires(post): jpackage-utils
Requires(postun): jpackage-utils</pre>
 
and '''SHOULD''' contain common sections such as the following:


<pre>
<pre>
...
...
%build
%build
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
mvn-rpmbuild package javadoc:aggregate
mkdir -p $MAVEN_REPO_LOCAL
...


mvn-jpp \
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
install javadoc:javadoc
...
%install
%install
rm -rf $RPM_BUILD_ROOT
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/maven2/poms
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_datadir}/maven2/poms/JPP-maven-archiver.pom
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP-%{name}.pom
%add_to_maven_depmap org.apache.maven maven-archiver %{version} JPP maven-archiver
install -pm 644 target/%{name}-%{version}.jar $RPM_BUILD_ROOT/%{_javadir}/%{name}.jar
 
# second argument is optional (parent poms have no jars)
%add_maven_depmap JPP-%{name}.pom %{name}.jar
...
...
%post
%update_maven_depmap


%postun
%check
%update_maven_depmap
mvn-rpmbuild verify
...
 
%files
%{_mavendepmapfragdir}/%{name}
%{_mavenpomdir}/JPP-%{name}.pom
</pre>
 
Useful mvn-rpmbuild customisations:
* -Dmaven.local.depmap.file=FILE.xml - xml file that defines alternative dependency maps
* -Dmaven.local.debug=true makes custom resolver output more debugging information
 
{{admon/important|Important|For detailed instructions on use of add_maven_depmap macro see [[#depmap_macro|macro documentation]]}}
 
=== add_maven_depmap macro ===
{{Anchor|depmap_macro}}
 
Maven identifies jar files by a set of strings: groupId, artifactId and version (mostly). To let mvn-rpmbuild know what groupId:artifactId corresponds to which pom or jar file, we use the <code>%add_maven_depmap</code> macro. <code>%add_maven_depmap</code> reads the groupId and artifactId from the pom file and creates a file in <code>%{_mavendepmapfragdir}</code> that maps groupId:artifactId pairs to jar files under <code>%{_javadir}</code>. All fragments in this directory are read by mvn-rpmbuild during startup, allowing the locally installed jar files and poms to be used as a maven repository.
 
Note that -- unless you use the <code>-f</code> option as shown below -- all depmap fragments for a given package are written to the same file, <code>%{_mavendepmapfragdir}/%{name}</code>. You should be sure to include this file in the <code>%files</code> section of your RPM.
 
For the macro to work properly, all jar files must be copied into <code>%{_javadir}</code> (see [[#JAR_file_installation|JAR file installation]]), and all pom files must be copied into <code>%{_mavenpomdir}</code> and given file names of the following form, where <code>jarname</code> is the name of the jar without the .jar suffix:
<pre>%{_mavenpomdir}/JPP[.subdirectory]-jarname.pom</pre>
Note that the subdirectory is only necessary if the jar file is put into a subdirectory of <code>%{_javadir}</code>. For example:
* For junit, the jar is <code>%{_javadir}/junit.jar</code>, so the pom would be <code>%{_mavenpomdir}/JPP-junit.pom</code>.
* For plexus-ant-factory, the jar is <code>%{_javadir}/plexus/ant-factory.jar</code>, so the pom would named <code>%{_mavenpomdir}/JPP.plexus-ant-factory.pom</code>.
If a pom is installed with no corresponding jar file -- for example, for parent poms -- the same convention should be followed:
* The Apache commons parent pom is installed in <code>%{_mavenpomdir}/JPP-commons-parent.pom</code>.
 
In its simplest form (a pom without a jar file), <code>%add_maven_depmap</code> looks like this:
<pre>%add_maven_depmap JPP-%{name}.pom</pre>
This will read the pom file in question and provide a mapping between the groupId and artifactId inside the pom file and the pom file placed into <code>%{_mavenpomdir}</code>.
 
For a pom that maps directly to a jar file, the following is the correct form:
<pre>%add_maven_depmap JPP-%{name}.pom %{name}.jar</pre>
In addition to creating the pom mapping, this will also ensure that the correct jar is associated with the groupId and artifactId from the pom.
 
<pre>%add_maven_depmap JPP-%{name}.pom %{name}.jar -a "org.apache.commons:commons-lang"</pre>
This form also adds additional mappings for given pom/jar file. For example, if the pom file indicates that it contains groupId commons-lang, artifactId commons-lang, this form ensures that we also add a mapping between groupId org.apache.commons and the installed jar/pom files. This is necessary in cases where the groupId or artifactId may have changed, and other packages might require different IDs than those reflected in the installed pom.
 
<pre>%add_maven_depmap JPP-%{name}.pom %{name}.jar -f "XXX"</pre>
This form stores dependency mapping inside <code>%{_mavendepmapfragdir}/%{name}-XXX</code> instead of standard location. This is useful for packages with multiple subpackages where each has its own jar files.
 
<pre>%add_maven_depmap JPP.%{name}-sub.pom %{name}/sub.jar</pre>
This form should be used when a package consists of multiple jar files that are installed into a subdirectory of <code>%{_javadir}</code>. Note that in this case, the pom file name includes the optional subdirectory field.
 
=== Maven pom.xml files and depmaps ===
If upstream project is shipping Maven pom.xml files, these '''MUST''' be installed with the corresponding %add_maven_depmap calls.
 
If upstream project does not ship pom.xml file [[http://repo1.maven.org/maven2/ official maven repo]] should be checked and if there are pom.xml files they '''SHOULD''' be installed.
 
{{admon/tip|Tip|[http://mvnrepository.com/ Mvnrepository site] can be used to ease}}
 
 
=== Patching Maven <code>pom.xml</code> files ===
 
Sometimes Maven <code>pom.xml</code> files need to be patched before they are used to build packages. One could use traditional patches to maintain changes, but package maintainers '''SHOULD''' use <code>%pom_*</code> macros developed specially to ease this task.
 
These macros are designed to be called from <code>%prep</code> section of spec files. There are documented in <code>/etc/rpm/macros.fjava</code> configuration file, which is also [http://git.fedorahosted.org/git/?p=javapackages.git;a=blob_plain;f=macros.fjava available online]. See the documentation for technical details how to use these macros. Below are some examples added for convenience.
 
Often dependencies specified in Maven <code>pom.xml</code> files need to be removed because of different reasons. <code>%pom_remove_dep</code> macro can be used to ease this task:
 
<pre>
# Removes dependency on groupId:artifactId from ./pom.xml
%pom_remove_dep groupId:artifactId
 
# Removes dependency on groupId:artifactId from ./submodule/pom.xml
%pom_remove_dep groupId:artifactId submodule
 
# Removes dependency on groupId:artifactId from ./full/path/to/file.pom
%pom_remove_dep groupId:artifactId full/path/to/file.pom
 
# Removes dependency on all artifacts in group groupId from ./pom.xml
%pom_remove_dep groupId:
 
# Removes all dependencies from ./pom.xml
%pom_remove_dep :
</pre>
 
<code>%pom_remove_plugin</code> macro works exactly as <code>%pom_remove_dep</code>, except it removes Maven plugin invocations. Some examples:
 
<pre>
# Disables maven-jar-plugin so that classpath isn't included in manifests
%pom_remove_plugin :maven-jar-plugin
 
# Disable a proprietary plugin that isn't packaged for Fedora
%pom_remove_plugin com.example.mammon:useless-proprietary-plugin submodule
</pre>
</pre>


=== Wrapper Scripts ===
Sometimes some submodules of upstream project cannot be built for various reasons and there is a need to disable them. This can be achieved by using <code>%pom_disable_module</code>, for example:
Applications wishing to provide a convenient method of execution '''SHOULD''' provide a wrapper script in <code>%{_bindir</code>}.  These can be as simple as this example:
 
<pre>
# Disables child-module-1, a submodule of the main pom.xml file
%pom_disable_module child-module-1
 
# Disables grandchild-module, a submodule of child-module-2/pom.xml
%pom_disable_module grandchild-module child-module-2
</pre>


<pre>#!/bin/bash
The above macros cover the most common cases of modifying <code>pom.xml</code> files, however if there is a need to apply some less-common patches there are also two generic macros for modifying <code>pom.xml</code> files. <code>%pom_xpath_remove</code> can be used to remove arbitrary XML nodes, described by [http://www.w3.org/TR/xpath/ XPath] expressions. <code>%pom_xpath_inject</code> macro is capable of injecting arbitrary [http://www.w3.org/TR/xml/ XML] code to any <code>pom.xml</code> file. Below you can find some examples for these macros.
. /usr/share/java-utils/java-functions


MAIN_CLASS=MyCoolApp
<pre>
# Removes parent definition
%pom_xpath_remove "pom:parent"


set_classpath "mycoolapp"
# Removes extensions from the build
%pom_xpath_remove "pom:build/pom:extensions" module/pom.xml


run "$@"
# Adds new dependency
%pom_xpath_inject "pom:dependencies" "<dependency><groupId>org.example.project</groupId><artifactId>awesomeproject</artifactId><version>1.0.0.GA</version></dependency>"
</pre>
</pre>
{{admon/note|Note|POM files use a specific namespace - http://maven.apache.org/POM/4.0.0. The easiest way to respect this namespace in XPath expressions is prefixing all node names with <code>pom:</code>. For example, <code>pom:environment/pom:os</code> will work because it selects nodes from <code>pom</code> namespace, but <code>environment/os</code> won't find anything because it looks for nodes that don't belong to any XML namespace.}}
Using <code>%pom_*</code> macros not only increases readability of the spec file, but also improves maintainability of the package as there are no patches that would need to be rebased with each upstream release.
=== Wrapper Scripts ===
Applications wishing to provide a convenient method of execution '''SHOULD''' provide a wrapper script in <code>%{_bindir}</code>. 
The jpackage-utils package contains a convenience <code>%jpackage_script</code> macro that can be used to create scripts that work for the majority of packages.  See its definition and documentation in <code>/etc/rpm/macros.jpackage</code>.  One thing to pay attention to is the 6th argument to it - whether to prefer a JRE over a full SDK when looking up a JVM to invoke - most packages that don't require the full Java SDK will want to set that to <code>true</code> to avoid unexpected results when looking up a JVM when some of the installed JRE's don't have the corresponding SDK (*-devel package) installed.
<pre>
%install
...
%jpackage_script com.sun.msv.driver.textui.Driver "" "" msv-msv:msv-xsdlib:relaxngDatatype:isorelax msv true
...
</pre>
The previous example installs the "msv" script (5th argument) with main class being com.sun.msv.driver.textui.Driver (1st argument). No optional flags (2nd argument) or options (3rd argument) are used. This script will add several libraries to classpath before executing main class (4th argument, jars separated with ":"). <code>build-classpath</code> is run on every part of 4th argument to create full classpaths.


=== GCJ ===
=== GCJ ===
Building GCJ AOT bits is discouraged unless you have a very strong reason to include them in the packages.
Even when AOT bits are built and included in packages it is recommended to not require java-1.5.0-gcj because this will force every single user to install it even if one wants to use another JVM.
Please refer to [[Packaging/GCJGuidelines]]  for GCJ-specific guidelines.
Please refer to [[Packaging/GCJGuidelines]]  for GCJ-specific guidelines.


Line 140: Line 292:
== Specfile Template ==
== Specfile Template ==
=== ant ===
=== ant ===
<pre>
<pre>
Name:          # see normal package guidelines
Name:          # see normal package guidelines
Version:        # see normal package guidelines
Version:        # see normal package guidelines
Release:        1%{?dist}
Release:        1%{?dist}
Summary:        # see normal package guidelines (SNPG)
Summary:        # see normal package guidelines


Group:          # SNPG
Group:          # see normal package guidelines
License:        # SNPG
License:        # see normal package guidelines
URL:            # SNPG
URL:            # see normal package guidelines
Source0:        # SNPG
Source0:        # see normal package guidelines
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:      noarch


BuildRequires:  jpackage-utils
BuildRequires:  jpackage-utils
Line 166: Line 319:
%package javadoc
%package javadoc
Summary:        Javadocs for %{name}
Summary:        Javadocs for %{name}
Group:          Development Documentation
Group:          Documentation
Requires:      %{name} = %{version}-%{release}
Requires:      jpackage-utils
Requires:      jpackage-utils


%description javadoc
%description javadoc
This package contains the API documentation for %{name}.
This package contains the API documentation for %{name}.
%package manual
Summary:        Manual for %{name}
Group:          Development Documentation
Requires:      jpackage-utils
Requires:      %{name} = %{version}-%{release}
%description manual
The manual for %{name}.


%prep
%prep
%setup -q
%setup -q


find -name '*.class' -exec rm -f '{}' \;
find -name '*.class' -exec rm -f '{}' \;
find -name '*.jar' -exec rm -f '{}' \;
find -name '*.jar' -exec rm -f '{}' \;


%build
%build
Line 195: Line 335:


%install
%install
rm -rf $RPM_BUILD_ROOT


mkdir -p $RPM_BUILD_ROOT%{_javadir}
mkdir -p $RPM_BUILD_ROOT%{_javadir}
cp -p [build path to jar]   \
cp -p [build path to jar] $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
 


mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -rp [javadoc directory] \
cp -rp [javadoc directory] $RPM_BUILD_ROOT%{_javadocdir}/%{name}
$RPM_BUILD_ROOT%{_javadocdir}/%{name}
 
%clean
rm -rf $RPM_BUILD_ROOT


%files
%files
%defattr(-,root,root,-)
%{_javadir}/*
%{_javadir}/*
%doc
%doc


%files javadoc
%files javadoc
%defattr(-,root,root,-)
%{_javadocdir}/%{name}
%{_javadocdir}/%{name}


%files manual
%defattr(-,root,root,-)
%doc [manual directory] /*


%changelog
%changelog
</pre>
</pre>


=== maven ===
 
 
=== maven 3 ===
<pre>
<pre>
Name:          # see normal package guidelines
Name:          # see normal package guidelines
Version:        # see normal package guidelines
Version:        # see normal package guidelines
Release:        1%{?dist}
Release:        1%{?dist}
Summary:        # see normal package guidelines (SNPG)
Summary:        # see normal package guidelines
 
Group:          # see normal package guidelines
License:        # see normal package guidelines
URL:            # see normal package guidelines
Source0:        # see normal package guidelines


Group:          # SNPG
BuildArch:      noarch
License:        # SNPG
URL:            # SNPG
Source0:        # SNPG
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)


BuildRequires:  jpackage-utils
BuildRequires:  jpackage-utils
Line 242: Line 373:
BuildRequires:  java-devel
BuildRequires:  java-devel


BuildRequires:  maven2
BuildRequires:  maven


BuildRequires:    maven2-plugin-compiler
BuildRequires:    maven-compiler-plugin
BuildRequires:    maven2-plugin-install
BuildRequires:    maven-install-plugin
BuildRequires:    maven2-plugin-jar
BuildRequires:    maven-jar-plugin
BuildRequires:    maven2-plugin-javadoc
BuildRequires:    maven-javadoc-plugin
BuildRequires:    maven2-plugin-release
BuildRequires:    maven-release-plugin
BuildRequires:    maven2-plugin-resources
BuildRequires:    maven-resources-plugin
BuildRequires:    maven2-plugin-surefire
BuildRequires:    maven-surefire-plugin


Requires:      jpackage-utils
Requires:      jpackage-utils
Requires(post):      jpackage-utils
Requires(postun):    jpackage-utils
Requires:      java
Requires:      java


%description
%description
some smart and long description.


%package javadoc
%package javadoc
Summary:        Javadocs for %{name}
Summary:        Javadocs for %{name}
Group:          Development/Documentation
Group:          Documentation
Requires:      %{name}-%{version}-%{release}
Requires:      jpackage-utils
Requires:      jpackage-utils


%description javadoc
%description javadoc
This package contains the API documentation for %{name}.
This package contains the API documentation for %{name}.
%package manual
Summary:        Manual for %{name}
Group:          Development/Documentation
Requires:      jpackage-utils
Requires:      %{name}-%{version}-%{release}
%description manual
The manual for %{name}.


%prep
%prep
Line 283: Line 401:


%build
%build
 
mvn-rpmbuild package javadoc:aggregate
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
mkdir -p $MAVEN_REPO_LOCAL
 
mvn-jpp \
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
install javadoc:javadoc


%install
%install
rm -rf $RPM_BUILD_ROOT


mkdir -p $RPM_BUILD_ROOT%{_javadir}
mkdir -p $RPM_BUILD_ROOT%{_javadir}
cp -p [build path to jar]   \
cp -p [build path to jar] $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
 


mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -rp [javadoc directory] \
cp -rp [javadoc directory] $RPM_BUILD_ROOT%{_javadocdir}/%{name}
$RPM_BUILD_ROOT%{_javadocdir}/%{name}


install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/maven2/poms
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
install -pm 644 [path to pom]  \
install -pm 644 [path to pom]  \
$RPM_BUILD_ROOT%{_datadir}/maven2/poms/JPP-%{name}.pom
        $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
 
%add_to_maven_depmap org.apache.maven %{name} %{version} JPP %{name}


%clean
%add_maven_depmap JPP-%{name}.pom %{name}.jar
rm -rf $RPM_BUILD_ROOT


%post
%check
%update_maven_depmap
mvn-rpmbuild verify
 
%postun
%update_maven_depmap


%files
%files
%defattr(-,root,root,-)
%{_mavenpomdir}/JPP-%{name}.pom
%{_datadir}/maven2/poms
%{_mavendepmapfragdir}/%{name}
%{_mavendepmapfragdir}
%{_javadir}/%{name}.jar
%{_javadir}/*
%doc
%doc


%files javadoc
%files javadoc
%defattr(-,root,root,-)
%{_javadocdir}/%{name}
%{_javadocdir}/%{name}
%files manual
%defattr(-,root,root,-)
%doc [manual directory] /*


%changelog
%changelog
Line 337: Line 433:
</pre>
</pre>


For detailed instructions on the JPackage/Fedora maven, see the JPackage Maven rpm readme located [http://fedoraproject.org/wiki/Java/JPPMavenReadme here] .
{{admon/important|Important|For detailed instructions on use of add_maven_depmap macro see [[#add_maven_depmap_macro|macro documentation]]}}
 
== Packaging and using EE APIs ==
There are a number of various project providing implementations for Java EE APIs. To simplify packaging and use of these APIs certain standardization is necessary.
 
=== EE API List ===
Following is a list of EE APIs as of Java EE 6[http://docs.oracle.com/javaee/6/api/] with chosen packages that provide implementations:
* javax.activation - JDK
* javax.annotation - JDK
* javax.el - tomcat-el-2.2-api
* javax.enterprise.inject - cdi-api
* javax.inject - atinject
* javax.jws - JDK
* javax.mail - javamail 
* javax.management - JDK
* javax.management.remote - JDK
* javax.persistence - geronimo-jpa
* javax.security.auth.message - geronimo-jaspic-spec
* javax.servlet - tomcat-servlet-3.0-api
* javax.servlet.jsp - glassfish-jsp/glassfish-jsp-api
* javax.servlet.jsp.jstl - jakarta-taglibs-standard
* javax.transaction - JDK
* javax.ws.rs - jsr-311
* javax.wsdl - wsdl4j
* javax.xml - JDK
* javax.xml.bind - JDK
* javax.xml.rpc - axis
* javax.xml.soap - JDK
* javax.xml.stream - JDK
* javax.xml.ws - JDK
 
=== Packages providing APIs ===
In addition to following generic guidelines they '''MUST''':
* Add '''Provides: javax.XXX''' from the [[#EE_API_List|EE API list]]
* Add directory %{_javadir}/javax.XXX that will contain symlinks to all implementation jar files and their dependencies
 
At one time there '''CAN BE''' multiple API implementations but there '''MUST''' be at most one package having specific '''javax.XXX''' virtual provide.
 
=== Packages using APIs ===
Packages that need to use EE API '''SHOULD''' use:
* '''Requires: javax.XXX''' from the [[#EE_API_List|EE API list]]
* '''build-classpath javax.XXX''' or equivalent instead of relying on package-specific jar name.
 


== Packaging JAR files that use JNI ==
{{Anchor|JNI}}
{{Anchor|JNI}}
== Packaging JAR files that use JNI ==
=== Applicability ===
=== Applicability ===


Java programs that wish to make calls into native libraries do so via the Java Native Interface (JNI).  A Java package uses JNI if it contains a .so
Java programs that wish to make calls into native libraries do so via the Java Native Interface (JNI).  A Java package uses JNI if it contains a .so file. Note that this file can be embedded within JAR files themselves.


{{Template:Warning}} Note that GCJ packages contain <code>.so</code>s in <code>%{_libdir}/gcj/%{name</code>} but they are not JNI .sos.
{{Template:Warning}} Note that GCJ packages contain <code>.so</code>s in <code>%{_libdir}/gcj/%{name}</code> but they are not JNI .sos.


=== Guideline ===
=== Guideline ===


JAR files that require JNI shared objects '''MUST''' be installed in <code>%{_libdir}/%{name</code>}.  The JNI shared objects themselves must also be installed in <code>%{_libdir}/%{name}</code>. If the JNI-using code calls <code>System.loadLibrary</code> you'll have to patch it to use <code>System.load</code>, passing it the full path to the dynamic shared object.  If the package installs a wrapper script you'll need to manually add <code>%{_libdir}/%{name}/<jar filename></code> to <code>CLASSPATH</code>.  If you are depending on a JNI-using JAR file, you'll need to add it manually -- <code>build-classpath</code> will not find it.
* JNI packages '''MUST''' follow guidelines of ordinary Java packages with exceptions listed here
* JAR files using JNI or containing JNI shared objects themselves '''MUST''' be placed in <code>%{_jnidir}</code> and '''CAN BE''' symlinked to <code>%{_libdir}/%{name}</code>.
* JNI shared objects '''MUST''' be placed in <code>%{_libdir}/%{name}</code>  


=== Rationale ===
{{admon/note|Note|If the JNI-using code calls <code>System.loadLibrary</code> you'll have to patch it to use <code>System.load</code>, passing it the full path to the dynamic shared object.}}


This is less convenient, but cleaner from a packaging point-of-view, than putting the JAR file in <code>%{_javadir</code>}, and putting the JNI shared object in  <code>%{_libdir</code>} to be loaded from the default library path.  First, JNI shared objects are <code>dlopen</code>'d, and <code>dlopen</code>'d shared objects should not be placed directly in <code>%{_libdir</code>} since they are application-private data, and not libraries meant to be linked to directly -- that is, not meant to be shared. Second, placing the JAR file in <code>%{_javadir</code>} causes the build-classpath script to always load it, even when running on a runtime environment of the wrong arch, meaning that the <code>System.loadLibrary</code> line would fail.
{{admon/note|Macro expansions|<code>%{_jnidir}</code> usually expands into <code>%{_prefix}/lib/java</code>. <code>%{_prefix}/lib64/java</code> will cease its existence and will be decomissioned}}


The plan is to eventually eliminate patching of the <code>System.loadLibrary</code> line and wrapper script by making <code>jpackage-utils</code> multilib aware.  This involves the following changes: creating <code>%{_libdir}/java</code> and <code>%{_libdir}/jni</code> directories; giving JNI-containing packages the ability to require an architecture-specific runtime environment; adding support for specifying the required runtime architecture in a wrapper script; modifying <code>jpackage-utils</code>'s runtime scripts to search <code>%{_libdir}/java</code>; modifying IcedTea to look for JNI shared objects in <code>%{_libdir}/jni</code>.
=== Example ===
To satisfy this Fedora requirement of using "System.load()" instead of "System.loadLibrary()" while still providing 32-bit versus 64-bit usability as well as complying with Java's write-once-run-anywhere goal, most JNI jar file should contain code similar to the following (as used in the pki-symkey JNI package):  
<pre>
    static boolean tryLoad(String filename) {
        try {
            System.load(filename);
        } catch (Exception e) {
            return false;
        } catch (UnsatisfiedLinkError e) {
            return false;
        }
 
        return true;
    }
 
    // Load native library
    static {
        boolean mNativeLibrariesLoaded = false;
        String os = System.getProperty("os.name");
        if ((os.equals("Linux"))) {
            // Check for 64-bit library availability
            // prior to 32-bit library availability.
            mNativeLibrariesLoaded =
                    tryLoad("/usr/lib64/symkey/libsymkey.so");
            if (mNativeLibrariesLoaded) {
                System.out.println("64-bit symkey library loaded");
            } else {
                // REMINDER:  May be trying to run a 32-bit app
                //            on 64-bit platform.
                mNativeLibrariesLoaded =
                        tryLoad("/usr/lib/symkey/libsymkey.so");
                if (mNativeLibrariesLoaded) {
                    System.out.println("32-bit symkey library loaded");
                } else {
                    System.out.println("FAILED loading symkey library!");
                    System.exit(-1);
                }
            }
        } else {
            try {
                System.loadLibrary("symkey");
                System.out.println("symkey library loaded");
                mNativeLibrariesLoaded = true;
            } catch (Throwable t) {
                // This is bad news, the program is doomed at this point
                t.printStackTrace();
            }
        }
    }
</pre>


The <code>%{_jnidir</code>} rpm macro defines the main JNI jar repository. Like <code>%{_javadir</code>} it is declined in <code>-ext</code> and <code>-x.y.z</code> variants. It follows exactly the same rules as the <code>%{_javadir</code>}-derived tree structure, except that it hosts JAR files that use JNI.
Packages utilizing approach of bundling so files as resources within JAR files themselves do not have these issues and are more self-contained.


<code>%{_jnidir</code>} usually expands into <code>/usr/lib/java</code>.
=== Notes on multiarch ===
 
Our guidelines have never been completely multiarch-aware. So it was never really possible to install both i686 and x86_64 JNI-using java libraries. However guidelines complicated things by introducing usage of %{_libdir} and other directories. This version makes it clear we do not support multiarch for JNI-using packages.
 
Some of the complications with multiarch for JNI packages are:
* build-classpath and related tools would need to be aware what will be architecture of executing JVM
* build-jar-classpath would still not work for creating symlinks because it would create them on build architecture instead of runtime architecture
* Previous reasons cause creating of /usr/bin wrappers impractical
* Handling proper requires in RPM is impossible. For example package Z-native.i686 and JDK.x86_64 are installed. As far as RPM is concerned this would be enough to provide Z.noarch with needed "Requires: Z-native", but it would not work during runtime.


== Things to avoid ==
== Things to avoid ==
Line 390: Line 586:
sed -i '/class-path/I d' META-INF/MANIFEST.MF
sed -i '/class-path/I d' META-INF/MANIFEST.MF
</pre>
</pre>
'''Will this preserve the line ending as the [http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html this page]  says it must?'''
 


[[Category:Packaging guidelines]]
[[Category:Packaging guidelines]]
[[Category:Java]]
[[Category:Java]]

Revision as of 19:27, 9 January 2013


These guidelines are laid out in order of relevance to packaging.

Introduction

The Basics

The term Java means many things to many people: a class library, a bytecode interpreter, a JIT compiler, a language specification, etc. For the vast majority of users and developers, Java is a programming language and runtime environment that is architecture- and OS-agnostic. The normal flow of code is .java (source file) .class (Java bytecode) .jar (a zip archive). In the majority of cases, a user executes a Java program by specifying a class name containing a main method (just like C and C++). Often, this is done by invoking the java binary with a list of JAR files specifying the classpath like so:

java [-cp <jar1:jar2:jar3>] <main-class> [<args>]

Java Packaging

The JPackage Project has defined standard file system locations and conventions for use in Java packages. Many distributions have inherited these conventions and in the vast majority of cases, Fedora follows them verbatim. We include relevant sections of the JPackage guidelines here but caution that the canonical document will always reside upstream: JPackage Guidelines . Over time, we would like to remove any divergences in these documents, but where they are different, these Fedora guidelines will take precedence for Fedora packages.

TODO: Find the proper jpackage link and fix it.

Package naming

Packages MUST follow the standard Fedora Packaging/NamingGuidelines.

Java API documentation MUST be placed into a sub-package called %{name}-javadoc.

Release tags

Packages MUST follow the standard Fedora Package versioning guidelines.

JAR file installation

The following applies to all JAR files except JNI-using JAR files, GCJ files and application-specific JAR files (ie. JAR files that can only reasonably be used as part of an application and therefore constitute application-private data).

Split JAR files

If a project offers the choice of packaging it as a single monolithic jar or several ones, the split packaging should be preferred.

Filenames

  • If the package provides a single JAR and the filename provided by the build is %{name}.jar or %{name}-%{version}.jar then filename %{name}.jar MUST be used.
  • If the package provides a single JAR and the filename provided by the build is neither %{name}-%{version}.jar nor %{name}.jar then this file MUST be installed as %{name}.jar and a symbolic link with the usual name must be provided.
  • If the package provides more than one JAR file, the filenames assigned by the build MUST be used (without versions).
  • If the project usually provides alternative JAR file names by installing symbolic links then such symlinks MAY be installed in the same directory as the JAR files.
Note.png
Note
Here %{name} refers either to package name, or name of subpackage where the jar is installed.

Installation directory

  • All architecture-independent JAR files MUST go into %{_javadir} or a Java-version specific directory %{_javadir}-* as appropriate[1]. Packages CAN place JAR files into subdirectories.

Compatibility packages

In certain cases it might be necessary to create compatibility packages that provide older API/ABI level of the same library. However creating these compatibility packages is strongly discouraged. To standardize and simplify packaging of such compatibility packages following rules apply:

  • Compatibility packages are named in the same way as original except addition of version to package name
  • Jar and pom files MUST be versioned
  • Base name of jar and pom files MUST be the same as original package jar and pom filenames and they MUST be placed alongside original files
  • Package SHOULD NOT provide maven fragments (%add_maven_depmap calls)
Note.png
Ant and Maven compatibility
build-classpath and related tools will resolve versioned jar files if versioned jar is asked for. Maven will use dependency information from main package and will return versioned jar if it matches the version asked for in the pom file.

Compatibility package example

  • Original package: plexus-container-2.0.0
Name:    plexus-container
Version: 2.0.0
...

%files
...
%{_javadir}/plexus/container.jar
%{_mavenpomdir}/JPP.plexus-container.pom
%{_mavendepmapfragdir}/%{name}
...
  • Compat package: plexus-container1-1.5.0
Name:    plexus-container15
Version: 1.5.0
...

%files
...
%{_javadir}/plexus/container-1.5.0.jar
%{_mavenpomdir}/JPP.plexus-container-1.5.0.pom
...

Javadoc installation

  • Java API documentation uses a system known as javadoc. All javadocs MUST be created and installed into a directory of %{_javadocdir}/%{name}.
  • Directory or symlink %{_javadocdir}/%{name}-%{version} SHOULD NOT exist.
  • The javadoc subpackage MUST be declared noarch even if main package is architecture specific.

BuildRequires and Requires

At a minimum, Java packages MUST:

BuildRequires: java-devel [>= specific_version] 
BuildRequires:  jpackage-utils

Requires:  java [>= specific_version]
Requires:  jpackage-utils

For historical reasons, when specifying versions 1.6.0 or greater, an epoch of 1 must be included. Example:

Requires: java >= 1:1.6.0

build-classpath

build-classpath is a script that can be used to generate classpaths from generic names of JAR files. Example:

export CLASSPATH=$(build-classpath commons-logging commons-net xbean/xbean-reflect)
Note.png
Additional information
You can use either jar filename or directory name relative to %{_javadir}, %{_jnidir} or %{_javajnidir} (all jar files will be included).

build-jar-repository

build-jar-repository is similar to build-classpath but instead of producing a classpath entry, it creates symlinks in a given directory. Example:

$ mkdir lib
$ build-jar-repository -s -p lib commons-logging commons-net
$ ls -l lib
commons-logging.jar -> /usr/share/java/commons-logging.jar
commons-net.jar -> /usr/share/java/commons-net.jar

ant

ant is a build tool used by many Java packages. Packages built using ant ship with build.xml files which contain build targets similar to Makefiles. Packages built using ant must:

BuildRequires: ant
...
%build
...
ant

maven3

In Fedora 15 and newer, maven 3 is used and the package is called maven. Packages built using maven ship with pom.xml files. They SHOULD contain common sections such as the following:

...
%build
mvn-rpmbuild package javadoc:aggregate 
...

%install
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP-%{name}.pom
install -pm 644 target/%{name}-%{version}.jar $RPM_BUILD_ROOT/%{_javadir}/%{name}.jar

# second argument is optional (parent poms have no jars)
%add_maven_depmap JPP-%{name}.pom %{name}.jar
...

%check
mvn-rpmbuild verify

%files
%{_mavendepmapfragdir}/%{name}
%{_mavenpomdir}/JPP-%{name}.pom

Useful mvn-rpmbuild customisations:

  • -Dmaven.local.depmap.file=FILE.xml - xml file that defines alternative dependency maps
  • -Dmaven.local.debug=true makes custom resolver output more debugging information
Important.png
Important
For detailed instructions on use of add_maven_depmap macro see macro documentation

add_maven_depmap macro

Maven identifies jar files by a set of strings: groupId, artifactId and version (mostly). To let mvn-rpmbuild know what groupId:artifactId corresponds to which pom or jar file, we use the %add_maven_depmap macro. %add_maven_depmap reads the groupId and artifactId from the pom file and creates a file in %{_mavendepmapfragdir} that maps groupId:artifactId pairs to jar files under %{_javadir}. All fragments in this directory are read by mvn-rpmbuild during startup, allowing the locally installed jar files and poms to be used as a maven repository.

Note that -- unless you use the -f option as shown below -- all depmap fragments for a given package are written to the same file, %{_mavendepmapfragdir}/%{name}. You should be sure to include this file in the %files section of your RPM.

For the macro to work properly, all jar files must be copied into %{_javadir} (see JAR file installation), and all pom files must be copied into %{_mavenpomdir} and given file names of the following form, where jarname is the name of the jar without the .jar suffix:

%{_mavenpomdir}/JPP[.subdirectory]-jarname.pom

Note that the subdirectory is only necessary if the jar file is put into a subdirectory of %{_javadir}. For example:

  • For junit, the jar is %{_javadir}/junit.jar, so the pom would be %{_mavenpomdir}/JPP-junit.pom.
  • For plexus-ant-factory, the jar is %{_javadir}/plexus/ant-factory.jar, so the pom would named %{_mavenpomdir}/JPP.plexus-ant-factory.pom.

If a pom is installed with no corresponding jar file -- for example, for parent poms -- the same convention should be followed:

  • The Apache commons parent pom is installed in %{_mavenpomdir}/JPP-commons-parent.pom.

In its simplest form (a pom without a jar file), %add_maven_depmap looks like this:

%add_maven_depmap JPP-%{name}.pom

This will read the pom file in question and provide a mapping between the groupId and artifactId inside the pom file and the pom file placed into %{_mavenpomdir}.

For a pom that maps directly to a jar file, the following is the correct form:

%add_maven_depmap JPP-%{name}.pom %{name}.jar

In addition to creating the pom mapping, this will also ensure that the correct jar is associated with the groupId and artifactId from the pom.

%add_maven_depmap JPP-%{name}.pom %{name}.jar -a "org.apache.commons:commons-lang"

This form also adds additional mappings for given pom/jar file. For example, if the pom file indicates that it contains groupId commons-lang, artifactId commons-lang, this form ensures that we also add a mapping between groupId org.apache.commons and the installed jar/pom files. This is necessary in cases where the groupId or artifactId may have changed, and other packages might require different IDs than those reflected in the installed pom.

%add_maven_depmap JPP-%{name}.pom %{name}.jar -f "XXX"

This form stores dependency mapping inside %{_mavendepmapfragdir}/%{name}-XXX instead of standard location. This is useful for packages with multiple subpackages where each has its own jar files.

%add_maven_depmap JPP.%{name}-sub.pom %{name}/sub.jar

This form should be used when a package consists of multiple jar files that are installed into a subdirectory of %{_javadir}. Note that in this case, the pom file name includes the optional subdirectory field.

Maven pom.xml files and depmaps

If upstream project is shipping Maven pom.xml files, these MUST be installed with the corresponding %add_maven_depmap calls.

If upstream project does not ship pom.xml file [official maven repo] should be checked and if there are pom.xml files they SHOULD be installed.

Idea.png
Tip
Mvnrepository site can be used to ease


Patching Maven pom.xml files

Sometimes Maven pom.xml files need to be patched before they are used to build packages. One could use traditional patches to maintain changes, but package maintainers SHOULD use %pom_* macros developed specially to ease this task.

These macros are designed to be called from %prep section of spec files. There are documented in /etc/rpm/macros.fjava configuration file, which is also available online. See the documentation for technical details how to use these macros. Below are some examples added for convenience.

Often dependencies specified in Maven pom.xml files need to be removed because of different reasons. %pom_remove_dep macro can be used to ease this task:

# Removes dependency on groupId:artifactId from ./pom.xml
%pom_remove_dep groupId:artifactId

# Removes dependency on groupId:artifactId from ./submodule/pom.xml
%pom_remove_dep groupId:artifactId submodule

# Removes dependency on groupId:artifactId from ./full/path/to/file.pom
%pom_remove_dep groupId:artifactId full/path/to/file.pom

# Removes dependency on all artifacts in group groupId from ./pom.xml
%pom_remove_dep groupId:

# Removes all dependencies from ./pom.xml
%pom_remove_dep :

%pom_remove_plugin macro works exactly as %pom_remove_dep, except it removes Maven plugin invocations. Some examples:

# Disables maven-jar-plugin so that classpath isn't included in manifests
%pom_remove_plugin :maven-jar-plugin

# Disable a proprietary plugin that isn't packaged for Fedora
%pom_remove_plugin com.example.mammon:useless-proprietary-plugin submodule

Sometimes some submodules of upstream project cannot be built for various reasons and there is a need to disable them. This can be achieved by using %pom_disable_module, for example:

# Disables child-module-1, a submodule of the main pom.xml file
%pom_disable_module child-module-1

# Disables grandchild-module, a submodule of child-module-2/pom.xml
%pom_disable_module grandchild-module child-module-2

The above macros cover the most common cases of modifying pom.xml files, however if there is a need to apply some less-common patches there are also two generic macros for modifying pom.xml files. %pom_xpath_remove can be used to remove arbitrary XML nodes, described by XPath expressions. %pom_xpath_inject macro is capable of injecting arbitrary XML code to any pom.xml file. Below you can find some examples for these macros.

# Removes parent definition
%pom_xpath_remove "pom:parent"

# Removes extensions from the build
%pom_xpath_remove "pom:build/pom:extensions" module/pom.xml

# Adds new dependency
%pom_xpath_inject "pom:dependencies" "<dependency><groupId>org.example.project</groupId><artifactId>awesomeproject</artifactId><version>1.0.0.GA</version></dependency>"
Note.png
Note
POM files use a specific namespace - http://maven.apache.org/POM/4.0.0. The easiest way to respect this namespace in XPath expressions is prefixing all node names with pom:. For example, pom:environment/pom:os will work because it selects nodes from pom namespace, but environment/os won't find anything because it looks for nodes that don't belong to any XML namespace.

Using %pom_* macros not only increases readability of the spec file, but also improves maintainability of the package as there are no patches that would need to be rebased with each upstream release.

Wrapper Scripts

Applications wishing to provide a convenient method of execution SHOULD provide a wrapper script in %{_bindir}.

The jpackage-utils package contains a convenience %jpackage_script macro that can be used to create scripts that work for the majority of packages. See its definition and documentation in /etc/rpm/macros.jpackage. One thing to pay attention to is the 6th argument to it - whether to prefer a JRE over a full SDK when looking up a JVM to invoke - most packages that don't require the full Java SDK will want to set that to true to avoid unexpected results when looking up a JVM when some of the installed JRE's don't have the corresponding SDK (*-devel package) installed.

%install
...
%jpackage_script com.sun.msv.driver.textui.Driver "" "" msv-msv:msv-xsdlib:relaxngDatatype:isorelax msv true 
...

The previous example installs the "msv" script (5th argument) with main class being com.sun.msv.driver.textui.Driver (1st argument). No optional flags (2nd argument) or options (3rd argument) are used. This script will add several libraries to classpath before executing main class (4th argument, jars separated with ":"). build-classpath is run on every part of 4th argument to create full classpaths.

GCJ

Building GCJ AOT bits is discouraged unless you have a very strong reason to include them in the packages. Even when AOT bits are built and included in packages it is recommended to not require java-1.5.0-gcj because this will force every single user to install it even if one wants to use another JVM.

Please refer to Packaging/GCJGuidelines for GCJ-specific guidelines.

-devel packages

-devel packages don't really make sense for Java packages. Header files do not exist for Java packages.

Specfile Template

ant

Name:           # see normal package guidelines
Version:        # see normal package guidelines
Release:        1%{?dist}
Summary:        # see normal package guidelines

Group:          # see normal package guidelines
License:        # see normal package guidelines
URL:            # see normal package guidelines
Source0:        # see normal package guidelines
BuildArch:      noarch

BuildRequires:  jpackage-utils

BuildRequires:  java-devel

BuildRequires:  ant

Requires:       jpackage-utils

Requires:       java

%description

%package javadoc
Summary:        Javadocs for %{name}
Group:          Documentation
Requires:       jpackage-utils

%description javadoc
This package contains the API documentation for %{name}.

%prep
%setup -q

find -name '*.class' -exec rm -f '{}' \;
find -name '*.jar' -exec rm -f '{}' \;

%build
ant

%install

mkdir -p $RPM_BUILD_ROOT%{_javadir}
cp -p [build path to jar] $RPM_BUILD_ROOT%{_javadir}/%{name}.jar

mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -rp [javadoc directory] $RPM_BUILD_ROOT%{_javadocdir}/%{name}

%files
%{_javadir}/*
%doc

%files javadoc
%{_javadocdir}/%{name}


%changelog


maven 3

Name:           # see normal package guidelines
Version:        # see normal package guidelines
Release:        1%{?dist}
Summary:        # see normal package guidelines

Group:          # see normal package guidelines
License:        # see normal package guidelines
URL:            # see normal package guidelines
Source0:        # see normal package guidelines

BuildArch:      noarch

BuildRequires:  jpackage-utils

BuildRequires:  java-devel

BuildRequires:  maven

BuildRequires:    maven-compiler-plugin
BuildRequires:    maven-install-plugin
BuildRequires:    maven-jar-plugin
BuildRequires:    maven-javadoc-plugin
BuildRequires:    maven-release-plugin
BuildRequires:    maven-resources-plugin
BuildRequires:    maven-surefire-plugin

Requires:       jpackage-utils
Requires:       java

%description
some smart and long description.

%package javadoc
Summary:        Javadocs for %{name}
Group:          Documentation
Requires:       jpackage-utils

%description javadoc
This package contains the API documentation for %{name}.

%prep
%setup -q

%build
mvn-rpmbuild package javadoc:aggregate

%install

mkdir -p $RPM_BUILD_ROOT%{_javadir}
cp -p [build path to jar] $RPM_BUILD_ROOT%{_javadir}/%{name}.jar

mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -rp [javadoc directory] $RPM_BUILD_ROOT%{_javadocdir}/%{name}

install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
install -pm 644 [path to pom]  \
        $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom

%add_maven_depmap JPP-%{name}.pom %{name}.jar

%check
mvn-rpmbuild verify

%files
%{_mavenpomdir}/JPP-%{name}.pom
%{_mavendepmapfragdir}/%{name}
%{_javadir}/%{name}.jar
%doc

%files javadoc
%{_javadocdir}/%{name}

%changelog

Important.png
Important
For detailed instructions on use of add_maven_depmap macro see macro documentation

Packaging and using EE APIs

There are a number of various project providing implementations for Java EE APIs. To simplify packaging and use of these APIs certain standardization is necessary.

EE API List

Following is a list of EE APIs as of Java EE 6[2] with chosen packages that provide implementations:

  • javax.activation - JDK
  • javax.annotation - JDK
  • javax.el - tomcat-el-2.2-api
  • javax.enterprise.inject - cdi-api
  • javax.inject - atinject
  • javax.jws - JDK
  • javax.mail - javamail
  • javax.management - JDK
  • javax.management.remote - JDK
  • javax.persistence - geronimo-jpa
  • javax.security.auth.message - geronimo-jaspic-spec
  • javax.servlet - tomcat-servlet-3.0-api
  • javax.servlet.jsp - glassfish-jsp/glassfish-jsp-api
  • javax.servlet.jsp.jstl - jakarta-taglibs-standard
  • javax.transaction - JDK
  • javax.ws.rs - jsr-311
  • javax.wsdl - wsdl4j
  • javax.xml - JDK
  • javax.xml.bind - JDK
  • javax.xml.rpc - axis
  • javax.xml.soap - JDK
  • javax.xml.stream - JDK
  • javax.xml.ws - JDK

Packages providing APIs

In addition to following generic guidelines they MUST:

  • Add Provides: javax.XXX from the EE API list
  • Add directory %{_javadir}/javax.XXX that will contain symlinks to all implementation jar files and their dependencies

At one time there CAN BE multiple API implementations but there MUST be at most one package having specific javax.XXX virtual provide.

Packages using APIs

Packages that need to use EE API SHOULD use:

  • Requires: javax.XXX from the EE API list
  • build-classpath javax.XXX or equivalent instead of relying on package-specific jar name.


Packaging JAR files that use JNI

Applicability

Java programs that wish to make calls into native libraries do so via the Java Native Interface (JNI). A Java package uses JNI if it contains a .so file. Note that this file can be embedded within JAR files themselves.

Stop (medium size).png Note that GCJ packages contain .sos in %{_libdir}/gcj/%{name} but they are not JNI .sos.

Guideline

  • JNI packages MUST follow guidelines of ordinary Java packages with exceptions listed here
  • JAR files using JNI or containing JNI shared objects themselves MUST be placed in %{_jnidir} and CAN BE symlinked to %{_libdir}/%{name}.
  • JNI shared objects MUST be placed in %{_libdir}/%{name}
Note.png
Note
If the JNI-using code calls System.loadLibrary you'll have to patch it to use System.load, passing it the full path to the dynamic shared object.
Note.png
Macro expansions
%{_jnidir} usually expands into %{_prefix}/lib/java. %{_prefix}/lib64/java will cease its existence and will be decomissioned

Example

To satisfy this Fedora requirement of using "System.load()" instead of "System.loadLibrary()" while still providing 32-bit versus 64-bit usability as well as complying with Java's write-once-run-anywhere goal, most JNI jar file should contain code similar to the following (as used in the pki-symkey JNI package):

    static boolean tryLoad(String filename) {
        try {
            System.load(filename);
        } catch (Exception e) {
            return false;
        } catch (UnsatisfiedLinkError e) {
            return false;
        }

        return true;
    }

    // Load native library
    static {
        boolean mNativeLibrariesLoaded = false;
        String os = System.getProperty("os.name");
        if ((os.equals("Linux"))) {
            // Check for 64-bit library availability
            // prior to 32-bit library availability.
            mNativeLibrariesLoaded =
                    tryLoad("/usr/lib64/symkey/libsymkey.so");
            if (mNativeLibrariesLoaded) {
                System.out.println("64-bit symkey library loaded");
            } else {
                // REMINDER:  May be trying to run a 32-bit app
                //            on 64-bit platform.
                mNativeLibrariesLoaded =
                        tryLoad("/usr/lib/symkey/libsymkey.so");
                if (mNativeLibrariesLoaded) {
                    System.out.println("32-bit symkey library loaded");
                } else {
                    System.out.println("FAILED loading symkey library!");
                    System.exit(-1);
                }
            }
        } else {
            try {
                System.loadLibrary("symkey");
                System.out.println("symkey library loaded");
                mNativeLibrariesLoaded = true;
            } catch (Throwable t) {
                // This is bad news, the program is doomed at this point
                t.printStackTrace();
            }
        }
    }

Packages utilizing approach of bundling so files as resources within JAR files themselves do not have these issues and are more self-contained.

Notes on multiarch

Our guidelines have never been completely multiarch-aware. So it was never really possible to install both i686 and x86_64 JNI-using java libraries. However guidelines complicated things by introducing usage of %{_libdir} and other directories. This version makes it clear we do not support multiarch for JNI-using packages.

Some of the complications with multiarch for JNI packages are:

  • build-classpath and related tools would need to be aware what will be architecture of executing JVM
  • build-jar-classpath would still not work for creating symlinks because it would create them on build architecture instead of runtime architecture
  • Previous reasons cause creating of /usr/bin wrappers impractical
  • Handling proper requires in RPM is impossible. For example package Z-native.i686 and JDK.x86_64 are installed. As far as RPM is concerned this would be enough to provide Z.noarch with needed "Requires: Z-native", but it would not work during runtime.

Things to avoid

Pre-built JAR files / Other bundled software

Many Java projects re-ship their dependencies in their own releases. This is unacceptable in Fedora. All packages MUST be built from source and MUST enumerate their dependencies with Requires. They MUST NOT build against or re-ship the pre-included JAR files but instead symlink out to the JAR files provided by dependencies. There may arise rare cases that an upstream project is distributing JAR files that are actually not re-distributable by Fedora. In this situation, the JAR files themselves should not be redistributed -- even in the source zip. A modified source zip should be created with some sort of modifier in the name (ex. -CLEAN) along with instructions for reproducing. It is a good idea to have something similar to the following at the end of %prep (courtesy David Walluck):

JAR files=""
for j in $(find -name \*.jar); do
if [ ! -L $j ] ; then
JAR files="$JAR files $j"
fi
done
if [ ! -z "$JAR files" ] ; then
echo "These JAR files should be deleted and symlinked to system JAR files: $JAR files"
exit 1
fi

Javadoc scriptlets

Older JPackage packages contained %post scriptlets creating %ghost symlinks. These MUST not appear in Fedora Java packages and are actively being removed at JPackage.

Selected rpmlint issues

class-path-in-manifest

Use sed to remove class-path elements in MANIFEST.MF (or whatever file is being used as the JAR manifest) prior to JAR creation. Example:

sed -i '/class-path/I d' META-INF/MANIFEST.MF