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
文件下载
文件名 操作
apt-repo-0.2.1.jar 下载
apt-repo-0.2.1.pom 下载
apt-repo-0.2.1-sources.jar 下载
Apache Maven
<dependency>
  <groupId>org.m1theo</groupId>
  <artifactId>apt-repo</artifactId>
  <version>0.2.1</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.m1theo:apt-repo:0.2.1'
Gradle Kotlin
implementation("org.m1theo:apt-repo:0.2.1")
Scala SBT
libraryDependencies += "org.m1theo" % "apt-repo" % "0.2.1"
Groovy Grape
@Grapes(
  @Grab(group='org.m1theo', module='apt-repo', version='0.2.1')
)
Apache Ivy
<dependency org="org.m1theo" name="apt-repo" rev="0.2.1" />
Leiningen
[org.m1theo/apt-repo "0.2.1"]
Apache Buildr
'org.m1theo:apt-repo:jar:0.2.1'