|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 1 | +<?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"> |
4 | 2 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.databend</groupId> |
6 | | - <artifactId>metabase-core</artifactId> |
7 | | - <version>1.40</version> |
| 3 | + <groupId>amalloy</groupId> |
| 4 | + <artifactId>ring-buffer</artifactId> |
| 5 | + <packaging>jar</packaging> |
| 6 | + <version>1.3.1</version> |
| 7 | + <name>ring-buffer</name> |
| 8 | + <description>Persistent bounded-size queue implementation in Clojure</description> |
| 9 | + <url>https://github.com/clj-commons/ring-buffer</url> |
| 10 | + <licenses> |
| 11 | + <license> |
| 12 | + <name>Eclipse Public License</name> |
| 13 | + <url>http://www.eclipse.org/legal/epl-v10.html</url> |
| 14 | + </license> |
| 15 | + </licenses> |
| 16 | + <scm> |
| 17 | + <tag>ef3635c71182eac1b6ecfa216c14adf90fabd28e</tag> |
| 18 | + </scm> |
| 19 | + <build> |
| 20 | + <sourceDirectory>src</sourceDirectory> |
| 21 | + <testSourceDirectory>test</testSourceDirectory> |
| 22 | + <resources> |
| 23 | + <resource> |
| 24 | + <directory>resources</directory> |
| 25 | + </resource> |
| 26 | + </resources> |
| 27 | + <testResources> |
| 28 | + <testResource> |
| 29 | + <directory>resources</directory> |
| 30 | + </testResource> |
| 31 | + </testResources> |
| 32 | + <directory>target</directory> |
| 33 | + <outputDirectory>target/classes</outputDirectory> |
| 34 | + <plugins/> |
| 35 | + </build> |
| 36 | + <repositories> |
| 37 | + <repository> |
| 38 | + <id>central</id> |
| 39 | + <url>https://repo1.maven.org/maven2/</url> |
| 40 | + <snapshots> |
| 41 | + <enabled>false</enabled> |
| 42 | + </snapshots> |
| 43 | + <releases> |
| 44 | + <enabled>true</enabled> |
| 45 | + </releases> |
| 46 | + </repository> |
| 47 | + <repository> |
| 48 | + <id>clojars</id> |
| 49 | + <url>https://repo.clojars.org/</url> |
| 50 | + <snapshots> |
| 51 | + <enabled>true</enabled> |
| 52 | + </snapshots> |
| 53 | + <releases> |
| 54 | + <enabled>true</enabled> |
| 55 | + </releases> |
| 56 | + </repository> |
| 57 | + </repositories> |
| 58 | + <dependencyManagement> |
| 59 | + <dependencies/> |
| 60 | + </dependencyManagement> |
| 61 | + <dependencies> |
| 62 | + <dependency> |
| 63 | + <groupId>org.clojure</groupId> |
| 64 | + <artifactId>clojure</artifactId> |
| 65 | + <version>1.10.1</version> |
| 66 | + <scope>provided</scope> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.clojure</groupId> |
| 70 | + <artifactId>clojurescript</artifactId> |
| 71 | + <version>1.10.520</version> |
| 72 | + <scope>provided</scope> |
| 73 | + </dependency> |
| 74 | + </dependencies> |
8 | 75 | </project> |
0 commit comments