173 lines
5.2 KiB
XML
173 lines
5.2 KiB
XML
<?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>metosin</groupId>
|
|
<artifactId>jsonista</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.3.1</version>
|
|
<name>jsonista</name>
|
|
<description>Clojure library for fast JSON encoding and decoding.</description>
|
|
<url>https://github.com/metosin/jsonista</url>
|
|
<licenses>
|
|
<license>
|
|
<name>Eclipse Public License</name>
|
|
<url>http://www.eclipse.org/legal/epl-v20.html</url>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>https://github.com/metosin/jsonista</url>
|
|
<connection>scm:git:git://github.com/metosin/jsonista.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/metosin/jsonista.git</developerConnection>
|
|
<tag>b7cb26a4889aeb9c9bd3ddff815643f366a7d2e6</tag>
|
|
</scm>
|
|
<build>
|
|
<sourceDirectory>src/clj</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>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-source</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>src/java</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</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>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.clojure</groupId>
|
|
<artifactId>clojure</artifactId>
|
|
<version>1.10.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jmh-clojure</groupId>
|
|
<artifactId>jmh-clojure</artifactId>
|
|
<version>0.4.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-joda</artifactId>
|
|
<version>2.12.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cheshire</groupId>
|
|
<artifactId>cheshire</artifactId>
|
|
<version>5.10.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.taoensso</groupId>
|
|
<artifactId>nippy</artifactId>
|
|
<version>3.1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.clojure</groupId>
|
|
<artifactId>data.json</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.cognitect</groupId>
|
|
<artifactId>transit-clj</artifactId>
|
|
<version>1.0.324</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.msgpack</groupId>
|
|
<artifactId>msgpack-core</artifactId>
|
|
<version>0.8.22</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.msgpack</groupId>
|
|
<artifactId>jackson-dataformat-msgpack</artifactId>
|
|
<version>0.8.22</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>criterium</groupId>
|
|
<artifactId>criterium</artifactId>
|
|
<version>0.4.6</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 -->
|