Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
initial commit: pulled from datastream
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Anderson committed Nov 10, 2016
0 parents commit cfcaf41
Show file tree
Hide file tree
Showing 8 changed files with 823 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
*/target
target/**
*/classes
*/checkouts
pom.xml
*/pom.xml
**/pom.xml
*/pom.xml.asc
*.jar
*.class
/.lein-*
*/.lein-*
/.nrepl-port
*/.nrepl-port
.idea/
*.iml
*/target/**
*.swp
.vagrant/
deploy/
**/*latest*.txt*
**/*.dat
*/*.iml
**/*.orig
**/*.log
target/
**/dev.edn
.nrepl-history
[#]*[#]
Vagrantfile
**.tested
**.installed
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Proletariat

Library of the Commons.

A hard-working library of common utilities.


![Proletariat](docs/proletariat.jpg "workers unite!")


## Add Dependency

Ensure the internal Liaison Nexus is listed as a Maven Repository in your build file:

> http://10.10.20.53:8081/nexus/repository/maven-public/
Then add the dependency using the code below that fits your build framework:

Leiningen
```clojure
[com.liaison/proletariat "0.1.0"]
```

Maven
```xml
<dependency>
<groupId>com.liaison</groupId>
<artifactId>proletariat</artifactId>
<version>0.1.0</version>
</dependency>
```

Gradle
```groovy
compile group: 'com.liaison', name: 'proletariat', version: '0.1.0'
```

## User Guide

// TODO
Binary file added docs/proletariat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
(defproject com.liaison/proletariat "0.1.0"
:description "Library of the Commons. A hard-working library of common utilities."
:url "https://github.com/LiaisonTechnologies/proletariat"

:repositories ^:replace
[["liaison-d2-public" {:url "http://10.10.20.53:8081/nexus/repository/maven-public/"
:snapshots true
:update :always}]

["MapR" {:url "http://repository.mapr.com/maven/"
:snapshots false
:update :always}]]

:profiles {:uberjar
{:source-paths ["src"]}}

:dependencies [[aysylu/loom "0.6.0"]
[com.taoensso/encore "2.68.1"]
[com.taoensso/timbre "4.7.0"]
[im.chit/hara.event "2.3.7"]
[org.clojure/clojure "1.9.0-alpha14"]
[org.clojure/test.check "0.9.0"]])
Loading

2 comments on commit cfcaf41

@liaison-dm-builder
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Phoenix :: proletariat Build 1 is now running

@liaison-dm-builder
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Phoenix :: proletariat Build 1 outcome was SUCCESS
Summary: Running Build time: 00:00:42

Please sign in to comment.