Maven Repository - POM file for Development jansi 1.6 1.6

Summary

${project.artifactId}.

Jansi is a java library for generating and interpreting ANSI escape sequences..

Declaration

Here is the list of declaration for jansi. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.fusesource.jansi</groupId>
   <artifactId>jansi</artifactId>
   <version>1.6</version>
</dependency>

If you think this Maven repository POM file listing for jansi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The jansi-1.6 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.7
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.
272




Depended by

The following table lists the most popular artifacts which are depending on jansi-1.6. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Groovygroovy 2.1.1
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy 1.8.9
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy-all 2.1.0
Groovy: A powerful, dynamic language for the JVM
23
Groovygroovy 2.0.2
Groovy: A powerful, dynamic language for the JVM
6
Groovygroovy-all 2.1.8
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy 2.0.6
Groovy: A powerful, dynamic language for the JVM
6
Groovygroovy-all 2.0.5
Groovy: A powerful, dynamic language for the JVM
14
Groovygroovy 2.1.5
Groovy: A powerful, dynamic language for the JVM
7
Groovygroovy 1.8.8
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy-all 2.0.1
Groovy: A powerful, dynamic language for the JVM
8
Groovygroovy-all 2.0.6
Groovy: A powerful, dynamic language for the JVM
22
Groovygroovy-all 1.8.9
Groovy: A powerful, dynamic language for the JVM
35
Groovygroovy-all 1.8.8
Groovy: A powerful, dynamic language for the JVM
11
Groovygroovy 2.1.0
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy-all 2.1.7
Groovy: A powerful, dynamic language for the JVM
21
Groovygroovy-all 2.1.6
Groovy: A powerful, dynamic language for the JVM
7
Groovygroovy 2.1.2
Groovy: A powerful, dynamic language for the JVM
5
Groovygroovy-all 2.0.2
Groovy: A powerful, dynamic language for the JVM
15




Plugin

The following plugins are used in the jansi-1.6.jar

  1. maven-bundle-plugin
  2. maven-clean-plugin
  3. maven-compiler-plugin
  4. maven-jar-plugin
  5. maven-javadoc-plugin
  6. maven-surefire-plugin
  7. maven-uberize-plugin

Packages

The following packages are defined in the jansi-1.6.jar

org.fusesource.hawtjni.runtime
org.fusesource.jansi
org.fusesource.jansi.internal




POM File Source

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">
  <parent>
    <artifactId>jansi-project</artifactId>
    <groupId>org.fusesource.jansi</groupId>
    <version>1.6</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jansi</artifactId>
  <name>${project.artifactId}</name>
  <description>Jansi is a java library for generating and interpreting ANSI escape sequences.</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <version>2.3</version>
      </plugin>
      <plugin>
        <groupId>org.fusesource.mvnplugins</groupId>
        <artifactId>maven-uberize-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>uberize</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.4.3</version>
        <configuration>
          <redirectTestOutputToFile>true</redirectTestOutputToFile>
          <forkMode>once</forkMode>
          <argLine>-ea</argLine>
          <failIfNoTests>false</failIfNoTests>
          <workingDirectory>${project.build.directory}</workingDirectory>
          <excludes>
            <exclude>**/Abstract*.java</exclude>
            <exclude>**/Test*.java</exclude>
          </excludes>
          <includes>
            <include>**/*Test.java</include>
          </includes>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.0.1</version>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
            <configuration>
              <instructions>
                <Import-Package>!org.fusesource.jansi*,!org.fusesource.hawtjni*,sun.reflect;resolution:=optional,*</Import-Package>
              </instructions>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <encoding>${project.build.sourceEncoding}</encoding>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.7</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>