Opened 6 years ago

Closed 6 years ago

#10422 closed enhancement (fixed)

Move to maven for java builds

Reported by: Pierre Labastie Owned by: Pierre Labastie
Priority: normal Milestone: 8.3
Component: BOOK Version: SVN
Severity: normal Keywords:
Cc:

Description

For all java packages (except icedtea-web, which uses its own build system) in the book, ant is deprecated in favor of maven. Having maven would allow to switch to a more recent version of junit.

Change History (9)

comment:1 by Pierre Labastie, 6 years ago

Owner: changed from blfs-book@… to Pierre Labastie
Status: newassigned

comment:2 by Pierre Labastie, 6 years ago

Took some time to get the build system to do anything. Still not sure it actually builds anything: there are a lot of downloads of the type:

Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.jar (190 kB at 160 kB/s)

Actually, there is a DEPENDENCIES file containing 43 lines of the form:

  - Plexus Common Utilities (http://codehaus-plexus.github.io/plexus-utils/) org.codehaus.plexus:plexus-utils:jar:3.1.0

I'll have some work to build all of those from source, and actually I am not sure whether it is possible.

comment:3 by Pierre Labastie, 6 years ago

What I have done so far:

It takes a few minutes, but the time is mainly spent downloading files.

comment:4 by Pierre Labastie, 6 years ago

OK when extracting the binary with --strip-components=1, there are no more downloads...

comment:5 by Pierre Labastie, 6 years ago

Two days later: did some progress, but open source documentation is just a plague...

  • I was wrong in comment:4. Downloaded files go to a local repository (by default $HOME/.m2/repository). If I erase $HOME/.m2, downloads occur again, whatever I do. Note that there is nothing wrong with that: maven depends on a lot of other projects. There are 1309 files downloaded, mainly jars...
  • Maven builder works with "phases". When you ask for a phase (say "package", which is roughly equivalent to "install" in other build system), all the preceding phases (validate, compile, test, ...) are played again. There may be configuration switches to skip some of those... Have to read more doc :-(. But it means that if you first do the compile phase, and then as root, the package phase, all the preceding phases will be replayed as root.
  • The default local repository can be changed on the command line, but cannot be put into the build directory, unless you skip the validation phase with -Drat.ignoreErrors=true.
  • same for the binary package, which cannot be extracted in tree for the same reason.

So we need two auxiliary directories (the local repo and the maven binary), which cannot be put into the build tree. So where to put them? /tmp, .., user home? In any case, they have to be removed at the end of the build. I'd be inclined to use ..

comment:6 by Pierre Labastie, 6 years ago

I realize that what we consider as building and installing is not quite the same in the maven ecosystem: everything that is built by maven has to be put into the repository(ies) in order to be reused in other builds (in addition to be installed to the system of course). Using system libraries is possible with some tweaks, but is discouraged.

I see that debian uses /usr/share/maven-repo, and adds some files to the repo for all the packages contained there. That's rather complicated...

Other things (unrelated). If we want to build everything from source in the java world, it may be a big task. We'd need other build tools (for example hamcrest, needed for junit, requires gradle. gradle can bootstrap itself. junit needs maven for building. maven needs junit. etc)

Even the jtreg test manager for OpenJDK requires a dozen of jars, from the same amount of sources...

I guess it would need a new book, something like JLFS (Java LFS). And a few authors...

In the absence of those, we'll have to use a lot of binaries without building them. Those may be downloaded from maven-central or apache repositories and stored in the local repository. But now, what do we want to build? Even fop can be found on those repos... I am wondering what is the limit between what we accept as binaries, and what we really want to build from source.

comment:7 by Pierre Labastie, 6 years ago

Eventually, after a poll to the list, the decision has been taken to do what is described in #10548.

comment:8 by Pierre Labastie, 6 years ago

Well, further discussion on the list lead showed that it'd be nice to keep developer tools ib the book for Java. I think the simplest is the following:

  • Keep OpenJDK and apache-ant as they are now
  • add apache-maven
  • move junit to maven
  • keep ant build for fop: the reason is that there is no easy way to add the hyphenation patterns with maven, except downloading the compiled patterns from sourceforge.

comment:9 by Pierre Labastie, 6 years ago

Resolution: fixed
Status: assignedclosed

Fixed at r19974

Note: See TracTickets for help on using tickets.