readline
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.aesh</groupId> <artifactId>readline</artifactId> <version>2.6</version> </dependency>
<?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>readline-all</artifactId> <groupId>org.aesh</groupId> <version>2.6</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>readline</artifactId> <name>Æsh Readline</name> <description>Æsh (Another Extendable SHell) Readline API</description> <developers> <developer> <name>Jean-Francois Denise</name> <email>jdenise@redhat.com</email> <organization>Red Hat</organization> <organizationUrl>http://www.redhat.com</organizationUrl> </developer> <developer> <name>Ståle Pedersen</name> <email>spederse@redhat.com</email> <organization>Red Hat</organization> <organizationUrl>http://www.redhat.com</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/aeshell/aesh-readline.git</connection> <developerConnection>scm:git:ssh://git@github.com/aeshell/aesh-readline.git</developerConnection> <url>https://github.com/aeshell/aesh-readline/tree/master</url> </scm> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <trimStackTrace>false</trimStackTrace> <includes> <include>**/*TestCase.java</include> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Automatic-Module-Name>${javaModuleName}</Automatic-Module-Name> </manifestEntries> <index>true</index> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>org.fusesource.jansi:jansi</exclude> <exclude>junit:junit</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <configLocation>${project.basedir}/../config/checkstyle/checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <excludes>**/module-info.java</excludes> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> <version>2.4.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <javaModuleName>org.aesh.readline</javaModuleName> </properties> </project>