jdeb.
This library provides an Ant task and a Maven plugin to create Debian packages from Java builds in a truly cross platform manner. Build your Debian packages on any platform that has Java support. Windows, Linux - it does not require additional native tools installed. The API underneath ....
Here is the list of declaration for jdeb. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.vafer</groupId> <artifactId>jdeb</artifactId> <version>0.8</version> </dependency>
If you think this Maven repository POM file listing for jdeb is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The jdeb-0.8 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Zip | commons-compress 1.0 Commons Compress is a component that contains Ar, Cpio, Jar, Tar, Zip and BZip2 packages | 31 |
Build | ant 1.7.1 Apache Ant | 137 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following plugins are used in the jdeb-0.8.jar
The following packages are defined in the jdeb-0.8.jar
org.vafer.jdeb org.vafer.jdeb.ant org.vafer.jdeb.changes org.vafer.jdeb.descriptors org.vafer.jdeb.mapping org.vafer.jdeb.maven org.vafer.jdeb.producers org.vafer.jdeb.shaded.compress.compress.archivers org.vafer.jdeb.shaded.compress.compress.archivers.ar org.vafer.jdeb.shaded.compress.compress.archivers.cpio org.vafer.jdeb.shaded.compress.compress.archivers.jar org.vafer.jdeb.shaded.compress.compress.archivers.tar org.vafer.jdeb.shaded.compress.compress.archivers.zip org.vafer.jdeb.shaded.compress.compress.changes org.vafer.jdeb.shaded.compress.compress.compressors org.vafer.jdeb.shaded.compress.compress.compressors.bzip2 org.vafer.jdeb.shaded.compress.compress.compressors.gzip org.vafer.jdeb.shaded.compress.compress.utils org.vafer.jdeb.signing org.vafer.jdeb.utils
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.vafer</groupId> <artifactId>jdeb</artifactId> <packaging>maven-plugin</packaging> <name>jdeb</name> <version>0.8</version> <description> This library provides an Ant task and a Maven plugin to create Debian packages from Java builds in a truly cross platform manner. Build your Debian packages on any platform that has Java support. Windows, Linux - it does not require additional native tools installed. The API underneath is well abstracted can easily be adopted for other areas as well. </description> <url>http://vafer.org/projects/jdeb</url> <licenses> <license> <name>Apache License 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com:tcurdt/jdeb.git</connection> <developerConnection>scm:git:git://github.com:tcurdt/jdeb.git</developerConnection> <url>http://github.com/tcurdt/jdeb/tree/master</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4</version> <configuration> <forkMode>never</forkMode> <includes> <include>**/*TestCase.java</include> </includes> <excludes> <exclude>**/Abstract*</exclude> </excludes> <testFailureIgnore>true</testFailureIgnore> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.apache.commons:commons-compress</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>org.vafer.jdeb.shaded.compress</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.4.1</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpg-jdk12</artifactId> <version>130</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <site> <id>website</id> <url>scpexe://vafer.org/var/www/vafer.org/www/projects/jdeb</url> </site> <repository> <id>releases</id> <url>scpexe://vafer.org/var/www/vafer.org/www/repository/releases</url> </repository> <snapshotRepository> <id>snaphots</id> <url>scpexe://vafer.org/var/www/vafer.org/www/repository/snapshots</url> </snapshotRepository> </distributionManagement> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.4</version> <configuration> <linksource>true</linksource> <links> <link>http://java.sun.com/javase/6/docs/api</link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.1</version> <reportSets> <reportSet> <reports> <report>project-team</report> <report>dependencies</report> <report>license</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.4</version> <configuration> <tags> <tag>FIXME</tag> <tag>TODO</tag> <tag>@todo</tag> <tag>@deprecated</tag> </tags> <aggregate>true</aggregate> </configuration> </plugin> </plugins> </reporting> </project>