diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index d4eabcc..0000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "src/main/clj/clj-tparse"] - path = src/main/clj/clj-tparse - url = git@github.com:ubindr/clj-tparse.git -[submodule "src/main/clj/ubindr/clj_tparse"] - path = src/main/clj/ubindr/clj_tparse - url = git@github.com:ubindr/clj-tparse.git diff --git a/project.clj b/project.clj index 3f65ac2..45658db 100644 --- a/project.clj +++ b/project.clj @@ -19,7 +19,8 @@ [cheshire/cheshire "5.11.0"] [com.cognitect/transit-clj "1.0.333"] [lambdaisland/uri "1.13.95"] - [clj-turtle "0.1.3"]] + [clj-turtle "0.1.3"] + [instaparse "1.4.12"]] :main ^:skip-aot org.domaindrivenarchitecture.activity-pub-poc.core :profiles {:test {:test-paths ["src/test/cljc"] :resource-paths ["src/test/resources"] diff --git a/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/core.clj b/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/core.clj index 4bbc56f..6e59b0b 100644 --- a/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/core.clj +++ b/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/core.clj @@ -1,7 +1,7 @@ (ns org.domaindrivenarchitecture.activity-pub-poc.core (:require [lambdaisland.souk.activitypub :as ap] [lambdaisland.souk.json-ld :as ld] - [ubindr.clj-tparse :as tparse] + [ubindr.clj-tparse.core :as parse] [clojure.spec.alpha :as s] [clojure.inspector :as ins] [hato.client :as hato]