-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cljdocs build fails when attempting to import Git #236
Comments
@zane also noted this on Slack today. ProblemThe pom published to clojars for this version of meander does not point back to meander sources on GitHub. <?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>
<packaging>jar</packaging>
<groupId>meander</groupId>
<artifactId>epsilon</artifactId>
<version>0.0.650</version>
<name>epsilon</name>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
</project> Cljdoc uses The FixThe meander build/release process needs to populate
I notice that meander is using tools.build. |
Related: I noticed you are no longer version tagging on release. Could be interesting to add this back in at the same time. This way the |
Closes noprompt#236
Looking at docs for the latest version, the Cljdoc build fails: https://cljdoc.org/builds/48006. I'm not seeing a Git repository listed on Clojars either, so I'm assuming it's failing to be added to your
pom.xml
for some reason.The text was updated successfully, but these errors were encountered: