Skip to content

Commit b3bad46

Browse files
committed
chore: fix groupId to org.replikativ, remove stale backwards-compat section
1 parent 6075ffe commit b3bad46

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ target before transforming it.
2222

2323
```clojure
2424
;; deps.edn
25-
{:deps {io.replikativ/beichte {:mvn/version "0.2.XXXX"} ;; see Clojars for latest}}
25+
{:deps {org.replikativ/beichte {:mvn/version "LATEST"}}}
2626
```
2727

2828
```clojure
@@ -165,11 +165,6 @@ Extend the default registry with domain-specific annotations:
165165
- **`beichte.analyze`** — AST-walking effect inference engine
166166
- **`beichte.core`** — Public API (delegates to the above)
167167

168-
## Backwards Compatibility
169-
170-
The legacy `impure?` / `pure-ground` / `register-pure!` API still works.
171-
New code should use `analyze`, `analyze-var`, and `analyze-ns` instead.
172-
173168
## Requirements
174169

175170
- **JDK 11+**
@@ -179,5 +174,4 @@ New code should use `analyze`, `analyze-var`, and `analyze-ns` instead.
179174

180175
Copyright © 2017–2026 Christian Weilbach
181176

182-
Distributed under the Eclipse Public License either version 1.0 or (at
183-
your option) any later version.
177+
Licensed under the Apache License, Version 2.0.

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(:import [clojure.lang ExceptionInfo]))
77

88
(def org "replikativ")
9-
(def lib 'io.replikativ/beichte)
9+
(def lib 'org.replikativ/beichte)
1010
(def current-commit (b/git-process {:git-args "rev-parse HEAD"}))
1111
(def version (format "0.2.%s" (b/git-count-revs nil)))
1212
(def class-dir "target/classes")

template/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<version>template</version>
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>io.replikativ</groupId>
5+
<groupId>org.replikativ</groupId>
66
<artifactId>beichte</artifactId>
77
<packaging>jar</packaging>
88
<name>beichte</name>

0 commit comments

Comments
 (0)