Created
October 2, 2025 08:00
-
-
Save plexus/1d9d4ca78371419ebb43f1cb07fd2c79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>kaocha-cljs</artifactId> | |
| <version>1.6.158</version> | |
| <name>kaocha-cljs</name> | |
| <description>ClojureScript support for Kaocha</description> | |
| <url>https://github.com/lambdaisland/kaocha-cljs</url> | |
| <inceptionYear>2018</inceptionYear> | |
| <organization> | |
| <name>Lambda Island</name> | |
| <url>https://lambdaisland.com</url> | |
| </organization> | |
| <properties> | |
| <project class="build sourceEncoding">UTF-8</project> | |
| </properties> | |
| <licenses> | |
| <license> | |
| <name>MPL-2.0</name> | |
| <url>https://www.mozilla.org/media/MPL/2.0/index.txt</url> | |
| </license> | |
| </licenses> | |
| <scm> | |
| <url>https://github.com/lambdaisland/kaocha-cljs</url> | |
| <connection>scm:git:git://github.com/lambdaisland/kaocha-cljs.git</connection> | |
| <developerConnection>scm:git:ssh://[email protected]/lambdaisland/kaocha-cljs.git</developerConnection> | |
| <tag>cad298499b518a6c0c279b1a3a20ebaf08d5e34a</tag> | |
| </scm> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.clojure</groupId> | |
| <artifactId>clojure</artifactId> | |
| <version>1.12.3</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>lambdaisland</groupId> | |
| <artifactId>kaocha</artifactId> | |
| <version>1.91.1392</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.clojure</groupId> | |
| <artifactId>spec.alpha</artifactId> | |
| <version>0.5.238</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.lambdaisland</groupId> | |
| <artifactId>glogi</artifactId> | |
| <version>1.3.169</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.clojure</groupId> | |
| <artifactId>clojurescript</artifactId> | |
| <version>1.12.42</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.clojure</groupId> | |
| <artifactId>tools.namespace</artifactId> | |
| <version>1.5.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.cognitect</groupId> | |
| <artifactId>transit-js</artifactId> | |
| <version>0.8.874</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>pjstadig</groupId> | |
| <artifactId>humane-test-output</artifactId> | |
| <version>0.11.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.cognitect</groupId> | |
| <artifactId>transit-clj</artifactId> | |
| <version>1.0.333</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>http-kit</groupId> | |
| <artifactId>http-kit</artifactId> | |
| <version>2.8.1</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <sourceDirectory>src</sourceDirectory> | |
| <resources> | |
| <resource> | |
| <directory>src</directory> | |
| </resource> | |
| <resource> | |
| <directory>resources</directory> | |
| </resource> | |
| <resource> | |
| <directory>test/cljs</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>cad298499b518a6c0c279b1a3a20ebaf08d5e34a</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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment