Skip to content

Commit

Permalink
Merge pull request #21 from carocad/dependencies
Browse files Browse the repository at this point in the history
commit pom to get github dependency checks
  • Loading branch information
carocad committed Oct 16, 2019
2 parents a9e71b4 + 9edfc17 commit d6b28b1
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .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 All @@ -11,4 +10,4 @@ pom.xml.asc
.hg/
/.idea/
/nashorn_code_cache
/.cljs_nashorn_repl
/.cljs_nashorn_repl
99 changes: 99 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?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>carocad</groupId>
<artifactId>parcera</artifactId>
<packaging>jar</packaging>
<version>0.3.1</version>
<name>parcera</name>
<description>Grammar-based Clojure(script) parser</description>
<url>https://github.com/carocad/parcera</url>
<licenses>
<license>
<name>LGPLv3</name>
<url>https://github.com/carocad/parcera/blob/master/LICENSE.md</url>
</license>
</licenses>
<scm>
<url>https://github.com/carocad/parcera</url>
<connection>scm:git:git://github.com/carocad/parcera.git</connection>
<developerConnection>scm:git:ssh://[email protected]/carocad/parcera.git</developerConnection>
<tag>b4ca5c659e55f00781e37bee1dc6bb400460e307</tag>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>resources</directory>
</testResource>
</testResources>
<directory>target</directory>
<outputDirectory>target/classes</outputDirectory>
<plugins/>
</build>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<dependencyManagement>
<dependencies/>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.1</version>
</dependency>
<dependency>
<groupId>instaparse</groupId>
<artifactId>instaparse</artifactId>
<version>1.4.10</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.10.520</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>criterium</groupId>
<artifactId>criterium</artifactId>
<version>0.4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>test.check</artifactId>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

<!-- This file was autogenerated by Leiningen.
Please do not edit it directly; instead edit project.clj and regenerate it.
It should not be considered canonical data. For more information see
https://github.com/technomancy/leiningen -->

0 comments on commit d6b28b1

Please sign in to comment.