Skip to content

Commit cae6d7e

Browse files
committed
update parent pom and contrib dep versions
1 parent 3a938e1 commit cae6d7e

File tree

4 files changed

+14
-18
lines changed

4 files changed

+14
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Changelog
22
===========
33

4+
* v0.10.12 on Jan 5, 2026
5+
* Update parent pom and dep versions
46
* v0.10.11 c6c670a on Oct 28, 2025
57
* write-pom - TBUILD-41 - add :src-pom :none option
68
* v0.10.10 deedd62 on Jul 29, 2025

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Latest release:
1717
As a git dep:
1818

1919
```clojure
20-
io.github.clojure/tools.build {:git/tag "v0.10.11" :git/sha "c6c670a"}
20+
io.github.clojure/tools.build {:git/tag "v0.10.12" :git/sha ""}
2121
```
2222

2323
As a Maven dep:
2424

2525
```clojure
26-
io.github.clojure/tools.build {:mvn/version "0.10.11"}
26+
io.github.clojure/tools.build {:mvn/version "0.10.12"}
2727
```
2828

2929
# Developer Information

deps.edn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{:paths ["src/main/clojure" "src/main/resources"]
22

33
:deps
4-
{org.clojure/clojure {:mvn/version "1.12.0"}
5-
org.clojure/tools.deps {:mvn/version "0.22.1492"}
4+
{org.clojure/clojure {:mvn/version "1.12.4"}
5+
org.clojure/tools.deps {:mvn/version "0.28.1569"}
66
;org.clojure/tools.deps {:git/url "https://github.com/clojure/tools.deps.git"
77
; :git/sha "459222ca6e4fce91cf5838435589a028cedbc784"}
8-
org.clojure/tools.namespace {:mvn/version "1.5.0"}
8+
org.clojure/tools.namespace {:mvn/version "1.5.1"}
99
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}
1010

1111
:aliases
@@ -32,7 +32,7 @@
3232

3333
;; Lint the source
3434
;; clj -M:lint
35-
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2024.11.14"}}
35+
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2025.10.23"}}
3636
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
3737
}
3838
}

pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.clojure</groupId>
1111
<artifactId>pom.contrib</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.4.0</version>
1313
</parent>
1414

1515
<developers>
@@ -22,7 +22,7 @@
2222
<properties>
2323
<!-- used for build -->
2424
<clojure.warnOnReflection>true</clojure.warnOnReflection>
25-
<clojure.version>1.12.0</clojure.version>
25+
<clojure.version>1.12.4</clojure.version>
2626
</properties>
2727

2828
<dependencies>
@@ -34,12 +34,12 @@
3434
<dependency>
3535
<groupId>org.clojure</groupId>
3636
<artifactId>tools.deps</artifactId>
37-
<version>0.22.1492</version>
37+
<version>0.28.1569</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.clojure</groupId>
4141
<artifactId>tools.namespace</artifactId>
42-
<version>1.5.0</version>
42+
<version>1.5.1</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.slf4j</groupId>
@@ -68,7 +68,7 @@
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-resources-plugin</artifactId>
71-
<version>3.1.0</version>
71+
<version>3.4.0</version>
7272
</plugin>
7373
<plugin>
7474
<!-- By default, compile everything as a sanity check, but do
@@ -101,7 +101,7 @@
101101
<plugin>
102102
<groupId>org.sonatype.plugins</groupId>
103103
<artifactId>nexus-staging-maven-plugin</artifactId>
104-
<version>1.6.8</version>
104+
<version>1.7.0</version>
105105
<extensions>true</extensions>
106106
<configuration>
107107
<!-- The server "id" element from settings to use authentication from -->
@@ -120,10 +120,4 @@
120120
<tag>HEAD</tag>
121121
</scm>
122122

123-
<repositories>
124-
<repository>
125-
<id>clojars</id>
126-
<url>https://clojars.org/repo/</url>
127-
</repository>
128-
</repositories>
129123
</project>

0 commit comments

Comments
 (0)