Skip to content

Commit

Permalink
Update pom/CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
plexus committed Jun 25, 2024
1 parent c6fa0f3 commit e51b535
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
/classes
/checkouts
/native
pom.xml
pom.xml.asc
*.jar
*.class
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Unreleased

## Added

## Fixed

## Changed

# 3.4.126 (2024-06-25 / a4d04c6)

- fork from Xylon2/ring-redis-session, first release under `com.lambdaisland`
Expand Down
110 changes: 110 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.lambdaisland</groupId>
<artifactId>ring-redis-session</artifactId>
<version>3.4.126</version>
<name>ring-redis-session</name>
<description>Redis session store, originally clj-redis-session by sritchie.</description>
<url>https://github.com/lambdaisland/ring-redis-session</url>
<inceptionYear>2011</inceptionYear>
<organization>
<name>Lambda Island</name>
<url>https://lambdaisland.com</url>
</organization>
<properties>
<project class="build sourceEncoding">UTF-8</project>
</properties>
<licenses>
<license>
<name>Eclipse Public License 1.0</name>
<url>https://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<scm>
<url>https://github.com/lambdaisland/ring-redis-session</url>
<connection>scm:git:git://github.com/lambdaisland/ring-redis-session.git</connection>
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/ring-redis-session.git</developerConnection>
<tag>c6fa0f3e8e4bdd39ae59399650b5051f200b2971</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.3</version>
</dependency>
<dependency>
<groupId>com.taoensso</groupId>
<artifactId>carmine</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.logging</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>ring</groupId>
<artifactId>ring-core</artifactId>
<version>1.12.2</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<git-revision>c6fa0f3e8e4bdd39ae59399650b5051f200b2971</git-revision>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
</project>

0 comments on commit e51b535

Please sign in to comment.