This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
REM Assume this file is Windows-1252 encoded | |
REM (default when editing with Notepad) | |
chcp 1252>nul | |
REM Set 7zip to PATH | |
set _7ZIP_INSTALLATION=C:\Program Files\7-Zip | |
set PATH=%_7ZIP_INSTALLATION%;%PATH% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns clojurebridge.core | |
(:require [clojure.edn :as edn] | |
[clj-http.client :as client] | |
[cheshire.core :as json])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject parser-vuln-test "1.0" :dependencies [[org.clojure/clojure "1.6.0"]]) |