d

degen

A Maven Mojo to download and "degenerate" non-maven projects into sources and binaries This MOJO is supposed to scrape and "de-generate" a zip file containing jars into a project's generated-sources folder, skipping items provided in the `src/` folder. It is intended to "mavenize-with-changes" an existing project and allow the user (of the Mojo) to replace classes which they do not have the ability/desire to recompile without setting up a full build. It can also be used to import non-maven projects by not changing anything. The itch I wanted to scratch was mostly to port libGDX to Maven, while replacing the native methods on Matrix4, without rebuilding the whole project. In essence - it's an alternative to patching someone else's project.
https://github.com/g-pechorin/degen
GNU AFFERO GENERAL PUBLIC LICENSE
Files download
File Operation
degen-1.3.0.jar download
degen-1.3.0.pom download
degen-1.3.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.peterlavalle</groupId>
  <artifactId>degen</artifactId>
  <version>1.3.0</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'com.peterlavalle:degen:1.3.0'
Gradle Kotlin
implementation("com.peterlavalle:degen:1.3.0")
Scala SBT
libraryDependencies += "com.peterlavalle" % "degen" % "1.3.0"
Groovy Grape
@Grapes(
  @Grab(group='com.peterlavalle', module='degen', version='1.3.0')
)
Apache Ivy
<dependency org="com.peterlavalle" name="degen" rev="1.3.0" />
Leiningen
[com.peterlavalle/degen "1.3.0"]
Apache Buildr
'com.peterlavalle:degen:jar:1.3.0'