Writing RPM files … in plain Java … on Maven Central


A few weeks back I wrote a blog post about writing RPM files in plain Java.

What was left over was the fact that the library was not available outside of Package Drone itself. Although it was created as a stand alone functionality you would need to fetch the JAR and somehow integrate it into your build.

With the recent release of Package Drone 0.13.0 I was finally able to officially push the module to Maven Central.

<dependency>
  <groupId>org.eclipse.packagedrone</groupId>
  <artifactId>org.eclipse.packagedrone.utils.rpm</artifactId>
  <version>0.13.0</version>
</dependency>

In the meanwhile I did work on a Maven RPM builder plugin, which allows creating RPM files on any platform. The newest version (0.5.0) has been released today as well, which already uses the new library.

So working with RPM files just got a bit easier ;-)