Skip to content

Commit

Permalink
Deploy 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madstap committed Jan 24, 2021
1 parent 3728b6f commit e5bd923
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
Expand Down
50 changes: 50 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?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>
<packaging>jar</packaging>
<groupId>igviz</groupId>
<artifactId>igviz</artifactId>
<version>0.2.0</version>
<name>igviz</name>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.namespace</artifactId>
<version>0.3.1</version>
</dependency>
<dependency>
<groupId>integrant</groupId>
<artifactId>integrant</artifactId>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>macroz</groupId>
<artifactId>tangle</artifactId>
<version>0.2.2</version>
</dependency>
<dependency>
<groupId>dorothy</groupId>
<artifactId>dorothy</artifactId>
<version>0.0.7</version>
</dependency>
<dependency>
<groupId>medley</groupId>
<artifactId>medley</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
</project>

0 comments on commit e5bd923

Please sign in to comment.