Created
January 23, 2023 18:31
-
-
Save sritchie/226dc7d2e57458e2f84c30ef7e98ae92 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>sicmutils</groupId> | |
<name>sicmutils</name> | |
<description>A port of the scmutils computer algebra/mechanics system to Clojure.</description> | |
<url>http://github.com/sicmutils/sicmutils</url> | |
<licenses> | |
<license> | |
<name>GPLv3</name> | |
<url>http://www.opensource.org/licenses/GPL-3.0</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<developers> | |
<developer> | |
<name>Sam Ritchie</name> | |
</developer> | |
<developer> | |
<name>Colin Smith</name> | |
</developer> | |
</developers> | |
<scm> | |
<url>https://github.com/sicmutils/sicmutils</url> | |
<connection>scm:git:git://github.com/sicmutils/sicmutils.git</connection> | |
<developerConnection>scm:git:ssh://[email protected]/sicmutils/sicmutils.git</developerConnection> | |
<tag>v0.23.0</tag> | |
</scm> | |
<dependencies> | |
<dependency> | |
<groupId>org.clojure</groupId> | |
<artifactId>clojure</artifactId> | |
<version>1.10.1</version> | |
</dependency> | |
<dependency> | |
<groupId>dm3</groupId> | |
<artifactId>stopwatch</artifactId> | |
<version>0.1.1</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.clojure</groupId> | |
<artifactId>clojurescript</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-math3</artifactId> | |
<version>3.6.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.clojure</groupId> | |
<artifactId>math.numeric-tower</artifactId> | |
<version>0.0.4</version> | |
</dependency> | |
<dependency> | |
<groupId>com.taoensso</groupId> | |
<artifactId>timbre</artifactId> | |
<version>6.0.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.clojure</groupId> | |
<artifactId>core.match</artifactId> | |
<version>1.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.babashka</groupId> | |
<artifactId>sci</artifactId> | |
<version>0.6.37</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<sourceDirectory>src</sourceDirectory> | |
<resources> | |
<resource> | |
<directory>resources</directory> | |
</resource> | |
</resources> | |
</build> | |
<repositories> | |
<repository> | |
<id>clojars</id> | |
<url>https://repo.clojars.org/</url> | |
</repository> | |
</repositories> | |
<artifactId>sicmutils</artifactId> | |
<version>0.23.0</version> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment