Skip to content

Commit

Permalink
Ready for initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmsparks committed Sep 16, 2018
1 parent c20ece5 commit e71d0d6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.cpcache
/.nrepl-port
/target
46 changes: 46 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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>
<groupId>juxt</groupId>
<artifactId>kick</artifactId>
<version>0.1.0-alpha</version>
<name>kick.alpha</name>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>me.raynes</groupId>
<artifactId>fs</artifactId>
<version>1.4.6</version>
</dependency>
<dependency>
<groupId>juxt</groupId>
<artifactId>dirwatch</artifactId>
<version>0.2.3</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>java.classpath</artifactId>
<version>0.3.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
</project>

0 comments on commit e71d0d6

Please sign in to comment.