[ previous ] [ Contents ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ next ]
If you are looking for an integrated, java virtual machine, compiler and runtime environment Debian does provide them. Of course that would depend on the Debian GNU/Linux version you are using, generally speaking they would be:
Sun's OpenJDK 6, available since the Debian 5.0 Lenny release in the main section.
Oracle's OpenJDK 7, available since the Debian 7.0 Wheezy release in the main section.
The combination GCJ, GIJ, and Classpath in the main section.
It is recommended to install one of the default-jdk or default-jre meta packages which either installs OpenJDK or GCJ depending on the architecture and Debian version.
Please help one of the Free Java implementations if you want to use Java in Debian. There are a lot of projects that you can choose from:
openjdk: http://openjdk.java.net/
gcj and libgcj: http://gcc.gnu.org/java/
Classpath http://www.classpath.org
. Most of
the Standard classes for Java 1.2 (except Swing and RMI) are implemented by the
ClassPath project, it tries to build an alternative to jdk's 1.2 core classes.
(NB: This was removed from Squeeze)
Mauve http://sources.redhat.com/mauve/
is a free suite to test if these tools are 'compliant'.
Most free Java development is grouped under the Free Java Project
.
There are binary packages available for the Java 6 and Java 7 platforms since the Debian 7.0 ('wheezy') release. Once this is done and you have updated your package database. You can either install the Java development kit:
apt-get install openjdk-6-jdk
or the Java runtime environment:
apt-get install openjdk-6-jre
Similarly, you can install the Java 7 development kit:
apt-get install openjdk-7-jdk
or the Java 7 runtime environment:
apt-get install openjdk-7-jre
You might want to update the alternatives system to have Sun's tools as the default:
update-java-alternatives -s java-1.6.0-openjdk-amd64
Or for java 7:
update-java-alternatives -s java-1.7.0-openjdk-amd64
Since the version 7 of the OpenJDK, the proprietary JVM developments are done on the OpenJDK. That means that the OpenJDK is strongly tested and high quality.
However, some users might want to use the Oracle JVM for the proprietary
extensions (for example: the browser plugin). For such need, Debian provides a
tool called java-package
.
The program make-jpkg will take an upstream archive and convert it to a Debian
package. For example:
make-jpkg jdk-6u31-linux-x64.bin
For more information see Oracle Technology
Network Java
.
Yes, but only if it can be build and run with Java programs/tools in main, and if it has a Debian compliant open source license. If it needs programs from contrib or non-free, then is must go into contrib or non-free, depending on the license of the program itself.
There are many Debian packages of both Java applications and libraries. These may serve as an good starting point, as it can serve as an example for making a new Debian package.
A good start would be to check out the pkg-java project on Alioth: http://pkg-java.alioth.debian.org/
.
Note that there are many ways to make a Debian package, making use of Ant or
Makefiles does not really matter. But, some tips for good practice are given
on the pkg-java page: http://pkg-java.alioth.debian.org/developers.html#rules
and http://pkg-java.alioth.debian.org/building.html
.
Both cdbs and debhelper (dh7) have support for ant scripts. There are also a
number of specialized tools or build helpers. Have a look at
javahelper
or maven-debian-helper
.
gcj-jdk
also has a dh_javadoc tool.
The java-policy mandates that documentation must be linked with the javadoc installed on the system. This can be done by passing javadoc the "-link" argument or by using the <link> tag in ant. An example:
# command line example of linking against system doc. javadoc -link /usr/share/doc/default-jdk-doc/api [other arguments] <!-- Ant example of linking against system doc --> <javadoc [attributes]> <link href="/usr/share/doc/default-jdk-doc/api/" /> [other tags] </javadoc>
The documentation must be installed at the time the linking is done; so in the
example cases above the package would need a Build-Depends or a
Build-Depends-Indep on default-jdk-doc
.
Here is a short list of packages that can be used for reference:
commons-jci
ow-util-ant-tasks
libhamcrest-java
libfreemarker-java
[ previous ] [ Contents ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ next ]
Debian Java FAQ.
$Revision: 10410 $, $Date: 2014-05-22 20:20:16 +0000 (Thu, 22 May 2014) $[email protected]
[email protected]
[email protected]
[email protected]