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..
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>1.0.1</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-1.0.1 has 10 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 |
---|---|---|
File | commons-io 2.4 The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more. | 852 |
Zip | commons-compress 1.4.1 Apache Commons Compress software defines an API for working with compression and archive formats. These include: bzip2, gzip, pack200, xz and ar, cpio, jar, tar, zip, dump. | 28 |
Build | maven-project 2.2.1 This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required. | 25 |
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-1.0.1.jar
The following packages are defined in the jdeb-1.0.1.jar
org.vafer.jdeb org.vafer.jdeb.ant org.vafer.jdeb.changes org.vafer.jdeb.control 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.dump 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.compressors org.vafer.jdeb.shaded.compress.compress.compressors.bzip2 org.vafer.jdeb.shaded.compress.compress.compressors.gzip org.vafer.jdeb.shaded.compress.compress.compressors.pack200 org.vafer.jdeb.shaded.compress.compress.compressors.xz org.vafer.jdeb.shaded.compress.compress.utils org.vafer.jdeb.shaded.compress.io org.vafer.jdeb.shaded.compress.io.input org.vafer.jdeb.shaded.compress.io.output 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>1.0.1</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. </description> <url>http://github.com/tcurdt/jdeb</url> <contributors> <contributor><name>Bryan Sant</name></contributor> <contributor><name>Christian Rigdon</name></contributor> <contributor><name>Elliot West</name></contributor> <contributor><name>Jeroen Rosenberg</name></contributor> <contributor><name>Manuel Woelker</name></contributor> <contributor><name>Patrick Schultz</name></contributor> <contributor><name>Petr Kozelka</name></contributor> <contributor><name>Scott Kuehn</name></contributor> <contributor><name>Ralph van Etten</name></contributor> </contributors> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.7.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <!-- <dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> --> <minimizeJar>true</minimizeJar> <artifactSet> <includes> <include>org.apache.commons:commons-compress</include> <include>commons-io:commons-io</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>org.vafer.jdeb.shaded.compress</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <forkMode>never</forkMode> <includes> <include>**/*TestCase.java</include> </includes> <excludes> <exclude>**/Abstract*</exclude> </excludes> <testFailureIgnore>false</testFailureIgnore> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.6</version> <configuration> <!-- <debug>true</debug> --> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <preBuildHookScript>setup</preBuildHookScript> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <!-- <goal>verify</goal> <goal>install</goal> --> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- mvn versions:display-dependency-updates --> <!-- mvn versions:display-plugin-updates --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.4.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.2.1</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-jdk15on</artifactId> <version>1.47</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <reporting> <excludeDefaults>true</excludeDefaults> <outputDirectory>${project.build.directory}/site</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <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-javadoc-plugin</artifactId> <version>2.8.1</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-surefire-report-plugin</artifactId> <version>2.12</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.7.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</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>