Skip to content

Commit

Permalink
[fr33m0nk]: Prepares for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
fr33m0nk committed Feb 23, 2024
1 parent bbe7d4c commit 8a0df9d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,26 @@ For further documentation, do refer [Alpakka Kafka official docs](https://doc.ak

- **CLI/deps.edn dependency information**
```clojure
net.clojars.fr33m0nk/clj-alpakka-kafka {:mvn/version "0.1.6"}
net.clojars.fr33m0nk/clj-alpakka-kafka {:mvn/version "0.1.7"}
```

- **Leningen/Boot**
```clojure
[net.clojars.fr33m0nk/clj-alpakka-kafka "0.1.6"]
[net.clojars.fr33m0nk/clj-alpakka-kafka "0.1.7"]
```

- **Maven**
```xml
<dependency>
<groupId>net.clojars.fr33m0nk</groupId>
<artifactId>clj-alpakka-kafka</artifactId>
<version>0.1.6</version>
<version>0.1.7</version>
</dependency>
```

- **Gradle**
```groovy
implementation("net.clojars.fr33m0nk:clj-alpakka-kafka:0.1.6")
implementation("net.clojars.fr33m0nk:clj-alpakka-kafka:0.1.7")
```

### Additional dependencies:
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
:src-dirs ["src"]))

(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
(test opts)
#_(test opts)
(b/delete {:path "target"})
(let [opts (jar-opts opts)]
(println "\nWriting pom.xml...")
Expand Down
32 changes: 18 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.clojars.fr33m0nk</groupId>
<artifactId>clj-alpakka-kafka</artifactId>
<version>0.1.6</version>
<name>fr33m0nk/clj-alpakka-kafka</name>
<version>0.1.7</version>
<name>clj-alpakka-kafka</name>
<description>Clojure wrapper for Alpakka Kafka.</description>
<url>https://github.com/fr33m0nk/clj-alpakka-kafka</url>
<licenses>
Expand All @@ -23,23 +22,28 @@
<url>https://github.com/fr33m0nk/clj-alpakka-kafka</url>
<connection>scm:git:git://github.com/fr33m0nk/clj-alpakka-kafka.git</connection>
<developerConnection>scm:git:ssh://[email protected]/fr33m0nk/clj-alpakka-kafka.git</developerConnection>
<tag>v0.1.6</tag>
<tag>v0.1.7</tag>
</scm>
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream-kafka_2.13</artifactId>
<version>4.0.2</version>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.3</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.13.13</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream_2.13</artifactId>
<version>2.8.0</version>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.13.10</version>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream-kafka_2.13</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
<build>
Expand All @@ -51,8 +55,8 @@
<url>https://repo.clojars.org/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<id>akka-repository</id>
<url>https://repo.akka.io/maven</url>
</repository>
</repositories>
<distributionManagement>
Expand Down

0 comments on commit 8a0df9d

Please sign in to comment.