Download asciitable-0.2.5.jar file

Introduction

You can download asciitable-0.2.5.jar in this page.

License

Apache 2

Type List

asciitable-0.2.5.jar file has the following types.

.keep
CHANGELOG.asciidoc
CHANGELOG.html
LICENSE
META-INF/MANIFEST.MF
META-INF/maven/de.vandermeer/asciitable/pom.properties
META-INF/maven/de.vandermeer/asciitable/pom.xml
README.asciidoc
README.html
de.vandermeer.asciitable.commons.ArrayTransformations.class
de.vandermeer.asciitable.commons.ObjectToStringStyle.class
de.vandermeer.asciitable.commons.TableException.class
de.vandermeer.asciitable.v1.V1_AsciiTable.class
de.vandermeer.asciitable.v1.V1_CharactersBoxDrawing.class
de.vandermeer.asciitable.v1.V1_Factory.class
de.vandermeer.asciitable.v1.V1_StandardTableThemes.class
de.vandermeer.asciitable.v1.V1_TablePair.class
de.vandermeer.asciitable.v1.V1_TableTheme.class
de.vandermeer.asciitable.v2.RenderedTable.class
de.vandermeer.asciitable.v2.V2_AsciiTable.class
de.vandermeer.asciitable.v2.render.BorderPosition.class
de.vandermeer.asciitable.v2.render.BorderType.class
de.vandermeer.asciitable.v2.render.ProcessedRow.class
de.vandermeer.asciitable.v2.render.RenderUtilities.class
de.vandermeer.asciitable.v2.render.V2_AsciiTableRenderer.class
de.vandermeer.asciitable.v2.render.V2_TableRenderer.class
de.vandermeer.asciitable.v2.render.V2_Width.class
de.vandermeer.asciitable.v2.render.WidthAbsoluteEven.class
de.vandermeer.asciitable.v2.render.WidthFixedColumns.class
de.vandermeer.asciitable.v2.render.WidthLongestLine.class
de.vandermeer.asciitable.v2.render.WidthLongestWord.class
de.vandermeer.asciitable.v2.render.WidthLongestWordMaxCol.class
de.vandermeer.asciitable.v2.render.WidthLongestWordMinCol.class
de.vandermeer.asciitable.v2.render.WidthUtilities.class
de.vandermeer.asciitable.v2.row.ContentRow.class
de.vandermeer.asciitable.v2.row.RuleRow.class
de.vandermeer.asciitable.v2.row.RuleRowStyle.class
de.vandermeer.asciitable.v2.row.RuleRowType.class
de.vandermeer.asciitable.v2.row.V2_Row.class
de.vandermeer.asciitable.v2.themes.AbstractRowTheme.class
de.vandermeer.asciitable.v2.themes.AbstractTableTheme.class
de.vandermeer.asciitable.v2.themes.ThemeValidator.class
de.vandermeer.asciitable.v2.themes.V2_E_RowThemes.class
de.vandermeer.asciitable.v2.themes.V2_E_TableThemes.class
de.vandermeer.asciitable.v2.themes.V2_RowTheme.class
de.vandermeer.asciitable.v2.themes.V2_RowThemeBuilder.class
de.vandermeer.asciitable.v2.themes.V2_TableTheme.class
de.vandermeer.asciitable.v2.themes.V2_TableThemeBuilder.class

Pom

asciitable-0.2.5.pom file content.

<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/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <!--
      This file is automatically created
      -->

    <!--
      Basic POM definitions
      -->
    <groupId>de.vandermeer</groupId>
    <artifactId>asciitable</artifactId>
    <version>0.2.5</version>
    <packaging>jar</packaging>

    <!--
      More project information
      -->
    <name>Ascii Table</name>
    <description>An ASCII table with various render options and UTF-8 support</description>
    <url>https://github.com/vdmeer/asciitable</url>
    <inceptionYear>2014</inceptionYear>

    <!--
      Pre-requisites
      -->
    <prerequisites>
        <maven>3.0.0</maven>
    </prerequisites>

    <!--
      Licenses
      -->
    <licenses>
        <license>
        	<name>Apache 2</name>
        	<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        	<distribution>repo</distribution>
        	<comments>A business-friendly OSS license</comments>
        </license>
    </licenses>

    <!--
      Properties
      -->
    <properties>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
        <encoding>UTF-8</encoding>
        <file.encoding>UTF-8</file.encoding>
        </properties>

    <!--
      Developers
      -->
    <developers>
        <developer>
        	<id>vdmeer.sven</id>
        	<name>Sven van der Meer</name>
        	<email>vdmeer.sven@mykolab.com</email>
        		<url>http://www.vandermeer.de</url>
        <!--
        		<organization>ACME</organization>
        		<organizationUrl>http://www.example.com</organizationUrl>
        -->
        		<roles>
        			<role>creator</role>
        			<role>developer</role>
        		</roles>
        		<timezone>Europe/Dublin</timezone>
        <!--
        		<properties>
        			<picUrl>http://www.example.com/jdoe/pic</picUrl>
        		</properties>
        -->
        </developer>
    </developers>

    <!--
      Contributors
      -->
    <contributors>
        <contributor>
        	<name>Sebastian Thomschke</name>
        	<email>sebthom@sourceforge.net</email>
        	<url>https://github.com/sebthom</url>
        	<timezone>Europe/Berlin</timezone>
        </contributor>
    </contributors>

    <dependencies>
        <dependency>
            <groupId>de.vandermeer</groupId>
            <artifactId>asciilist</artifactId>
            <version>0.0.3</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>de.sven-jacobs</groupId>
            <artifactId>loremipsum</artifactId>
            <version>1.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

<!--
<dependencyManagement>...</dependencyManagement>
-->

    <!--
      Build and Plugins
      -->
    <build>
        <plugins>

            <!-- Copy Changelog/Readme and then include in jar with License -->
            <plugin>
                <groupId>org.asciidoctor</groupId>
                <artifactId>asciidoctor-maven-plugin</artifactId>
                <version>1.5.3</version>
                <executions>
                    <execution>
                        <id>bundle-asciidoc</id>
                        <phase>process-resources</phase>
                        <configuration>
                            <sourceDirectory>src/bundle/doc</sourceDirectory>
                            <outputDirectory>./</outputDirectory>
                            <backend>html</backend>
                            <attributes>
                                <toc>true</toc>
                            </attributes>
                        </configuration>
                        <goals>
                            <goal>process-asciidoc</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.4.3</version>
                <executions>
                    <execution>
                        <id>copy-bundle-docs</id>
                        <phase>generate-resources</phase>
                        <goals><goal>copy-resources</goal></goals>
                        <configuration>
                            <outputDirectory>./</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>src/bundle/doc</directory>
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy-to-jar</id>
                        <phase>prepare-package</phase>
                        <goals><goal>copy-resources</goal></goals>
                        <configuration>
                            <outputDirectory>${basedir}/target/classes</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>${basedir}</directory>
                                    <includes>
                                        <include>LICENSE</include>
                                        <include>CHANGELOG*</include>
                                        <include>README*</include>
                                    </includes>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <excludes>
                        <exclude>**/doc-files/</exclude>
                    </excludes>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <source>${maven.compiler.source}</source>
                    <target>${maven.compiler.target}</target>
                    <optimize>true</optimize>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.3</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                        <configuration>
                            <encoding>${project.resources.sourceEncoding}</encoding>
                            <docencoding>${project.resources.sourceEncoding}</docencoding>
                            <charset>${project.resources.sourceEncoding}</charset>
                            <aggregate>true</aggregate>
                            <overview>${basedir}/src/main/javadoc/overview.html</overview>
                            <nohelp>true</nohelp>
                            <header>${project.name}: ${project.version}</header>
                            <footer>${project.name}: ${project.version}</footer>
                            <doctitle>${project.name}: ${project.version}</doctitle>
                            <noqualifier>all</noqualifier>
                            <detectLinks>true</detectLinks>
                            <detectJavaApiLink>true</detectJavaApiLink>
                            <javadocDirectory>${basedir}/src/main/javadoc</javadocDirectory>
                            <docfilessubdirs>true</docfilessubdirs>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>

    <!-- Environment Settings -->
    <issueManagement>
        <system>github</system>
        <url>https://github.com/vdmeer/asciitable/issues</url>
    </issueManagement>

<!--
<ciManagement>...</ciManagement>
<mailingLists>...</mailingLists>
-->

    <!--
      SCM
      -->
    <scm>
        <connection>scm:git:git://github.com/vdmeer/asciitable.git</connection>
        <developerConnection>scm:git:git@github.com:vdmeer/asciitable.git</developerConnection>
        <tag>HEAD</tag>
        <url>https://github.com/vdmeer/asciitable</url>
    </scm>

<!--
<repositories>...</repositories>
<pluginRepositories>...</pluginRepositories>
<distributionManagement>...</distributionManagement>
-->

</project>

POM Entry

<dependency>
   <groupId>de.vandermeer</groupId>
   <artifactId>asciitable</artifactId>
   <version>0.2.5</version>
</dependency>

Download

If you think the following asciitable-0.2.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download asciitable-0.2.5.jar file




PreviousNext

Related