a

apt-repo

This plugin turns your maven build for deb files into an apt-repository. It is meant to be used in conjunction with plugins like "jdeb", which generate deb files from your artifacts. apt-repo will generate an apt Release and Packages.gz file for these deb files. Therefore the apt command will recognize your maven build as a valid repo.
https://github.com/theoweiss/apt-repo
Eclipse Public License - v 1.0
Thomas Weiss
Files download
File Operation
apt-repo-0.1.0.jar download
apt-repo-0.1.0.pom download
apt-repo-0.1.0-sources.jar download
Apache Maven
<dependency>
  <groupId>org.m1theo</groupId>
  <artifactId>apt-repo</artifactId>
  <version>0.1.0</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.m1theo:apt-repo:0.1.0'
Gradle Kotlin
implementation("org.m1theo:apt-repo:0.1.0")
Scala SBT
libraryDependencies += "org.m1theo" % "apt-repo" % "0.1.0"
Groovy Grape
@Grapes(
  @Grab(group='org.m1theo', module='apt-repo', version='0.1.0')
)
Apache Ivy
<dependency org="org.m1theo" name="apt-repo" rev="0.1.0" />
Leiningen
[org.m1theo/apt-repo "0.1.0"]
Apache Buildr
'org.m1theo:apt-repo:jar:0.1.0'