Skip to content

Commit

Permalink
initial 0.1.alpha commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sysdevone committed Jan 3, 2016
1 parent 538d56c commit ebef638
Show file tree
Hide file tree
Showing 30 changed files with 3,531 additions and 30 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@
.mtj.tmp/

# Package Files #
*.jar

*.war
*.ear

# backup temp files #
*.bak


# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/bin
/.classpath
/.project
/target
/.settings
28 changes: 1 addition & 27 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -174,29 +174,3 @@
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

32 changes: 30 additions & 2 deletions README.md
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 added lib/gab-collection-0.3.alpha-javadoc.jar
Binary file not shown.
Binary file added lib/gab-collection-0.3.alpha-sources.jar
Binary file not shown.
Binary file added lib/gab-collection-0.3.alpha.jar
Binary file not shown.
Binary file added lib/gab-logging-0.2.beta-javadoc.jar
Binary file not shown.
Binary file added lib/gab-logging-0.2.beta-sources.jar
Binary file not shown.
Binary file added lib/gab-logging-0.2.beta.jar
Binary file not shown.
Binary file added lib/gab-validate-0.4.beta-javadoc.jar
Binary file not shown.
Binary file added lib/gab-validate-0.4.beta-sources.jar
Binary file not shown.
Binary file added lib/gab-validate-0.4.beta.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions lib/readme.txt
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.
151 changes: 151 additions & 0 deletions pom.xml
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>
Loading

0 comments on commit ebef638

Please sign in to comment.