-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sysdevone
committed
Jan 3, 2016
1 parent
538d56c
commit ebef638
Showing
30 changed files
with
3,531 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# gab-cmdline | ||
GAB Command Line Parser | ||
GAB-CmdLine | ||
======= | ||
|
||
A GAB Social Command Line Parser | ||
|
||
Build | ||
--------- | ||
Use Maven to build - mvn package. | ||
|
||
|
||
More Documentation | ||
------------------ | ||
Check our [wiki][]. | ||
|
||
|
||
License | ||
------- | ||
Code is under the Apache v2.0 License [license]. | ||
|
||
|
||
Donations | ||
--------- | ||
We accept tips through [Gratipay][tip]. | ||
|
||
[![Gratipay](https://img.shields.io/gratipay/sysdevone.svg?style=flat)](https://www.gratipay.com/sysdevone/) | ||
|
||
|
||
[license]:https://github.com/sysdevone/gab-cmdline/tree/master/LICENSE | ||
[wiki]:https://github.com/sysdevone/gab-cmdline/wiki | ||
[tip]:https://www.gratipay.com/sysdevone/ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
This is temporary. Once the gab jars have mature, they will be submitted to maven. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
<?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.gabsocial.gabcmdline</groupId> | ||
<artifactId>gab-cmdline</artifactId> | ||
<version>0.1.alpha</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>GAB Social Command Line Argument Parser</name> | ||
<description>The GAB Social Command Line Parser</description> | ||
<url>https://github.com/sysdevone/gab-cmdline</url> | ||
|
||
<properties> | ||
<github.global.server>github</github.global.server> | ||
</properties> | ||
|
||
<developers> | ||
<developer> | ||
<id>sysdevone</id> | ||
<name>Gregory Brown</name> | ||
<timezone>-8</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache v2.0</name> | ||
<url>https://github.com/sysdevone/gab-clap/blob/master/LICENSE.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<connection>scm:http://github.com/sysdevone/gab-cmdline.git</connection> | ||
<developerConnection>scm:http://github.com/sysdevone/gab-cmdline.git</developerConnection> | ||
<url>http://github.com/sysdevone/gab-cmdline.git</url> | ||
</scm> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.gabsocial</groupId> | ||
<artifactId>gab-validate</artifactId> | ||
<version>0.4.beta</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/lib/gab-validate-0.4.beta.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gabsocial</groupId> | ||
<artifactId>gab-logging</artifactId> | ||
<version>0.2.beta</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/lib/gab-logging-0.2.beta.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.gabsocial</groupId> | ||
<artifactId>gab-collection</artifactId> | ||
<version>0.3.alpha</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/lib/gab-collection-0.3.alpha.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.10</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.0</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</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> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>findbugs-maven-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>failing-on-high</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
<configuration> | ||
<threshold>Low</threshold> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.19</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.surefire</groupId> | ||
<artifactId>surefire-junit47</artifactId> | ||
<version>2.19</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<systemProperties> | ||
<property> | ||
<name>java.util.logging.config.file</name> | ||
<value>src/test/resources/logging.properties</value> | ||
</property> | ||
</systemProperties> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.