Skip to content

Commit

Permalink
added clojars in pom as repo
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwakarma committed May 19, 2015
1 parent 3267219 commit c0a94b6
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,31 @@
<packaging>jar</packaging>

<name>zjsonpatch</name>
<url>http://maven.apache.org</url>
<description>Java Library to find / apply JSON Patches according to RFC 6902</description>
<url>https://github.com/flipkart-incubator/zjsonpatch/</url>

<scm>
<connection>scm:git:https://github.com/flipkart-incubator/zjsonpatch.git</connection>
<developerConnection>scm:git:https://github.com/flipkart-incubator/zjsonpatch.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/flipkart-incubator/zjsonpatch</url>
</scm>

<developers>
<developer>
<id>vishwakarma</id>
<name>Gopi Vishwakarma</name>
<email>[email protected]</email>
</developer>
</developers>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -57,6 +81,12 @@
<artifactId>junit</artifactId>
<version>4.8.2</version>
</dependency>

</dependencies>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
</project>

0 comments on commit c0a94b6

Please sign in to comment.