inamik-text-tables
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.inamik.text.tables</groupId> <artifactId>inamik-text-tables</artifactId> <version>0.8</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>iNamik Text Tables for Java</name> <url>https://github.com/iNamik/java_text_tables</url> <description>A set of Java classes to help print text in tabulated form</description> <groupId>com.github.inamik.text.tables</groupId> <artifactId>inamik-text-tables</artifactId> <version>0.8</version> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <email>davidpfarrell+maven@gmail.com</email> <name>David Farrell</name> <url>https://github.com/iNamik</url> <id>iNamik</id> </developer> </developers> <scm> <url>https://github.com/iNamik/java_text_tables</url> <connection>scm:git:git@github.com:iNamik/java_text_tables.git</connection> <developerConnection>scm:git:git@github.com:iNamik/java_text_tables.git</developerConnection> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <packaging>jar</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}</directory> <includes> <include>README.md</include> <include>LICENSE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </build> <profiles> <!--<profile>--> <!--<id>release-sign-artifacts</id>--> <!--<activation>--> <!--<property>--> <!--<name>performRelease</name>--> <!--<value>true</value>--> <!--</property>--> <!--</activation>--> <!--<build>--> <!--<plugins>--> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-gpg-plugin</artifactId>--> <!--<version>1.6</version>--> <!--<executions>--> <!--<execution>--> <!--<id>sign-artifacts</id>--> <!--<phase>verify</phase>--> <!--<goals>--> <!--<goal>sign</goal>--> <!--</goals>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> <!--</plugins>--> <!--</build>--> <!--</profile>--> </profiles> </project>