-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some other small updates. -=david=-
- Loading branch information
Showing
10 changed files
with
62 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
|
||
updates: | ||
- directory: / | ||
package-ecosystem: github-actions | ||
schedule: | ||
interval: monthly | ||
|
||
version: 2 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
tag=$(git describe --abbrev=0 --match="*" 2>/dev/null || echo "0.0.0") | ||
clojure -X:jar :version "\"$tag\"" | ||
if [ -z $1 ]; then | ||
clojure -X:jar | ||
else | ||
clojure -X:jar :version "\"$1\"" | ||
fi |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
{:paths ["src"] | ||
|
||
:deps {org.clojure/clojure {:mvn/version "1.10.3"} | ||
io.sentry/sentry {:mvn/version "5.0.1"} | ||
ring/ring-core {:mvn/version "1.9.3"}} | ||
:deps {io.sentry/sentry {:mvn/version "5.1.1"} | ||
org.clojure/clojure {:mvn/version "1.10.3"} | ||
ring/ring-core {:mvn/version "1.9.4"}} | ||
|
||
:aliases {:test {:extra-paths ["test"] | ||
:extra-deps {cheshire/cheshire {:mvn/version "5.10.0"} | ||
:extra-deps {cheshire/cheshire {:mvn/version "5.10.1"} | ||
expectations/clojure-test {:mvn/version "1.2.1"} | ||
lambdaisland/kaocha {:mvn/version "1.0.861"} | ||
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"} | ||
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"} | ||
org.clojure/test.check {:mvn/version "1.1.0"}}} | ||
|
||
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}} | ||
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.278"}} | ||
:exec-fn hf.depstar/jar | ||
:exec-args {:jar sentry-clj.jar | ||
:exec-args {:jar target/sentry-clj.jar | ||
:group-id io.sentry | ||
:artifact-id sentry-clj | ||
:version "0.0.1" ;; this will be replaced at build time. | ||
:sync-pom true}} | ||
|
||
:antq {:replace-deps {org.slf4j/slf4j-nop {:mvn/version "1.7.32"} | ||
com.github.liquidz/antq {:mvn/version "0.16.3"}} | ||
:main-opts ["-m" "antq.core" | ||
"--skip" "pom" | ||
"--upgrade" | ||
"--force"]} | ||
|
||
:deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.5"}} | ||
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "sentry-clj.jar"]} | ||
:exec-fn deps-deploy.deps-deploy/deploy | ||
:exec-args {:installer :remote | ||
:artifact "target/sentry-clj.jar"}} | ||
|
||
:install {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.5"}} | ||
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "sentry-clj.jar"]}}} | ||
:exec-fn deps-deploy.deps-deploy/deploy | ||
:exec-args {:installer :local | ||
:artifact "target/sentry-clj.jar"}}}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{:paths ["src" "resources"] | ||
|
||
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.3"} | ||
io.sentry/sentry {:mvn/version "5.0.1"} | ||
io.sentry/sentry-clj {:mvn/version "5.0.149"} | ||
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.5"} | ||
io.sentry/sentry {:mvn/version "5.1.1"} | ||
io.sentry/sentry-clj {:mvn/version "5.0.151"} | ||
org.clojure/clojure {:mvn/version "1.10.3"} | ||
org.clojure/tools.cli {:mvn/version "1.0.206"} | ||
org.clojure/tools.logging {:mvn/version "1.1.0"} | ||
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/jul-to-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/slf4j-api {:mvn/version "1.7.30"}}} | ||
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/jul-to-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/slf4j-api {:mvn/version "1.7.32"}}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{:paths ["src" "resources"] | ||
|
||
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.3"} | ||
io.sentry/sentry {:mvn/version "5.0.1"} | ||
io.sentry/sentry-clj {:mvn/version "5.0.149"} | ||
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.5"} | ||
io.sentry/sentry {:mvn/version "5.1.1"} | ||
io.sentry/sentry-clj {:mvn/version "5.0.151"} | ||
org.clojure/clojure {:mvn/version "1.10.3"} | ||
org.clojure/tools.cli {:mvn/version "1.0.206"} | ||
org.clojure/tools.logging {:mvn/version "1.1.0"} | ||
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/jul-to-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.30"} | ||
org.slf4j/slf4j-api {:mvn/version "1.7.30"}}} | ||
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/jul-to-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.32"} | ||
org.slf4j/slf4j-api {:mvn/version "1.7.32"}}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<packaging>jar</packaging> | ||
<groupId>io.sentry</groupId> | ||
<artifactId>sentry-clj</artifactId> | ||
<version>5.0.149</version> | ||
<version>5.0.151</version> | ||
<name>sentry-clj</name> | ||
<description>A very thin wrapper around the official Java library for Sentry.</description> | ||
<url>https://github.com/getsentry/sentry-clj</url> | ||
|
@@ -18,7 +18,7 @@ | |
<url>https://github.com/getsentry/sentry-clj</url> | ||
<connection>scm:git:git://github.com/getsentry/sentry-clj.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/getsentry/sentry-clj.git</developerConnection> | ||
<tag>5.0.149</tag> | ||
<tag>5.0.151</tag> | ||
</scm> | ||
<dependencies> | ||
<dependency> | ||
|
@@ -29,12 +29,12 @@ | |
<dependency> | ||
<groupId>io.sentry</groupId> | ||
<artifactId>sentry</artifactId> | ||
<version>5.0.1</version> | ||
<version>5.1.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ring</groupId> | ||
<artifactId>ring-core</artifactId> | ||
<version>1.9.3</version> | ||
<version>1.9.4</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
|
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