-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated crux-xodus to xtdb-xodus #6
base: master
Are you sure you want to change the base?
Changes from 9 commits
02f0875
8acc35d
7e231e6
65a5925
e405553
be4005e
ce176dd
2efccb0
3e853c6
2648e2d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ pom.xml.asc | |
.nrepl-port | ||
.cpcache/ | ||
*.iml | ||
.clj-kondo/.cache | ||
.lsp/.cache | ||
.calva/output-window/output.calva-repl | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "interactive" | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this and put in the gitignore There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for responding. I'm happy to maintain this adapter if your team is not using it anymore. I am curious as to why you are not and what you switched to as obviously I'm planning on using it for a project. I thought it was appropriate to change the name but I'm happy to change it back if it proves problematic. I've made the changes you've requested see the latest commit. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/usr/bin/env sh | ||
clojure -A:test -m kaocha.runner "$@" | ||
clojure -M:test -m kaocha.runner "$@" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
{:paths ["src"] | ||
:deps {org.clojure/clojure {:mvn/version "1.10.0"} | ||
juxt/crux-core {:mvn/version "20.09-1.12.0-beta"} | ||
org.jetbrains.xodus/xodus-openAPI {:mvn/version "1.3.232"} | ||
org.jetbrains.xodus/xodus-environment {:mvn/version "1.3.232"}} | ||
:deps {org.clojure/clojure {:mvn/version "1.11.1"} | ||
com.xtdb/xtdb-core {:mvn/version "1.22.0"} | ||
org.jetbrains.xodus/xodus-openAPI {:mvn/version "2.0.1"} | ||
org.jetbrains.xodus/xodus-environment {:mvn/version "2.0.1"}} | ||
:aliases {:test {:extra-paths ["test"] | ||
:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.669"} | ||
:extra-deps {lambdaisland/kaocha {:mvn/version "1.70.1086"} | ||
kaocha-noyoda/kaocha-noyoda {:mvn/version "2019-06-03"} | ||
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"} | ||
ch.qos.logback/logback-classic {:mvn/version "1.2.3"} | ||
org.clojure/test.check {:mvn/version "0.10.0"}}}}} | ||
lambdaisland/kaocha-junit-xml {:mvn/version "1.16.98"} | ||
ch.qos.logback/logback-classic {:mvn/version "1.4.1"} | ||
org.clojure/test.check {:mvn/version "1.1.1"}}} | ||
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.1.932"} | ||
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.19.0"} | ||
org.apache.logging.log4j/log4j-core {:mvn/version "2.19.0"} | ||
org.slf4j/slf4j-simple {:mvn/version "2.0.3"}} | ||
:main-opts ["-m" "antq.core"]}}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be defined in your own .gitignore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done see latest commit and earlier response.