forked from clojure/tools.build
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:clojure/tools.build into merge-up…
…stream
- Loading branch information
Showing
9 changed files
with
230 additions
and
48 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,128 @@ | ||
<!DOCTYPE html PUBLIC "" | ||
""> | ||
<html><head><meta charset="UTF-8" /><title> </title><link rel="stylesheet" type="text/css" href="css/default.css" /><link rel="stylesheet" type="text/css" href="css/highlight.css" /><script type="text/javascript" src="js/highlight.min.js"></script><script type="text/javascript" src="js/jquery.min.js"></script><script type="text/javascript" src="js/page_effects.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div id="header"><h2>Generated by <a href="https://github.com/weavejester/codox">Codox</a></h2><h1><a href="index.html"><span class="project-title"><span class="project-name"></span> <span class="project-version"></span></span></a></h1></div><div class="sidebar primary"><h3 class="no-link"><span class="inner">Project</span></h3><ul class="index-link"><li class="depth-1 current"><a href="index.html"><div class="inner">Index</div></a></li></ul><h3 class="no-link"><span class="inner">Namespaces</span></h3><ul><li class="depth-1 "><a href="clojure.tools.build.api.html"><div class="inner"><span>clojure.tools.build.api</span></div></a></li></ul></div><div class="namespace-index" id="content"><h1><span class="project-title"><span class="project-name"></span> <span class="project-version"></span></span></h1><h2>Namespaces</h2><div class="namespace"><h3><a href="clojure.tools.build.api.html">clojure.tools.build.api</a></h3><div class="doc"><pre class="plaintext"></pre></div><div class="index"><p>Public variables and functions:</p><ul><li> <a href="clojure.tools.build.api.html#var-*project-root*">*project-root*</a> </li><li> <a href="clojure.tools.build.api.html#var-compile-clj">compile-clj</a> </li><li> <a href="clojure.tools.build.api.html#var-copy-dir">copy-dir</a> </li><li> <a href="clojure.tools.build.api.html#var-copy-file">copy-file</a> </li><li> <a href="clojure.tools.build.api.html#var-create-basis">create-basis</a> </li><li> <a href="clojure.tools.build.api.html#var-delete">delete</a> </li><li> <a href="clojure.tools.build.api.html#var-git-count-revs">git-count-revs</a> </li><li> <a href="clojure.tools.build.api.html#var-git-process">git-process</a> </li><li> <a href="clojure.tools.build.api.html#var-install">install</a> </li><li> <a href="clojure.tools.build.api.html#var-jar">jar</a> </li><li> <a href="clojure.tools.build.api.html#var-java-command">java-command</a> </li><li> <a href="clojure.tools.build.api.html#var-javac">javac</a> </li><li> <a href="clojure.tools.build.api.html#var-pom-path">pom-path</a> </li><li> <a href="clojure.tools.build.api.html#var-process">process</a> </li><li> <a href="clojure.tools.build.api.html#var-resolve-path">resolve-path</a> </li><li> <a href="clojure.tools.build.api.html#var-set-project-root.21">set-project-root!</a> </li><li> <a href="clojure.tools.build.api.html#var-uber">uber</a> </li><li> <a href="clojure.tools.build.api.html#var-unzip">unzip</a> </li><li> <a href="clojure.tools.build.api.html#var-with-project-root">with-project-root</a> </li><li> <a href="clojure.tools.build.api.html#var-write-file">write-file</a> </li><li> <a href="clojure.tools.build.api.html#var-write-pom">write-pom</a> </li><li> <a href="clojure.tools.build.api.html#var-zip">zip</a> </li></ul></div></div></div></body></html> | ||
<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>io.github.clojure</groupId> | ||
<artifactId>tools.build</artifactId> | ||
<version>0.9.7-SNAPSHOT</version> | ||
<name>tools.build</name> | ||
|
||
<parent> | ||
<groupId>org.clojure</groupId> | ||
<artifactId>pom.contrib</artifactId> | ||
<version>1.1.0</version> | ||
</parent> | ||
|
||
<developers> | ||
<developer> | ||
<id>puredanger</id> | ||
<name>Alex Miller</name> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<!-- used for build --> | ||
<clojure.warnOnReflection>true</clojure.warnOnReflection> | ||
<clojure.version>1.11.1</clojure.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.clojure</groupId> | ||
<artifactId>clojure</artifactId> | ||
<version>${clojure.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.clojure</groupId> | ||
<artifactId>tools.deps</artifactId> | ||
<version>0.18.1354</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.clojure</groupId> | ||
<artifactId>tools.namespace</artifactId> | ||
<version>1.4.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-nop</artifactId> | ||
<version>1.7.36</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<!-- overrides parent pom to set repo to s01 (the "new" repo) --> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<!-- This id is linked to the key setup on the CI server --> | ||
<id>sonatype-nexus-staging</id> | ||
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.1.0</version> | ||
</plugin> | ||
<plugin> | ||
<!-- By default, compile everything as a sanity check, but do | ||
not include any AOT-compiled .class files in the | ||
JAR. Projects may override as needed. --> | ||
<groupId>com.theoryinpractise</groupId> | ||
<artifactId>clojure-maven-plugin</artifactId> | ||
<version>1.7.1</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<warnOnReflection>${clojure.warnOnReflection}</warnOnReflection> | ||
<temporaryOutputDirectory>true</temporaryOutputDirectory> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>clojure-compile</id> | ||
<phase>none</phase> | ||
</execution> | ||
<execution> | ||
<id>clojure-test</id> | ||
<phase>test</phase> | ||
<goals> | ||
<goal>test</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- overrides parent pom because new projects are going to different staging repo - s01 --> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.8</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<!-- The server "id" element from settings to use authentication from --> | ||
<serverId>sonatype-nexus-staging</serverId> | ||
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:clojure/tools.build.git</connection> | ||
<developerConnection>scm:git:[email protected]:clojure/tools.build.git</developerConnection> | ||
<url>[email protected]:clojure/tools.build.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<repositories> | ||
<repository> | ||
<id>clojars</id> | ||
<url>https://clojars.org/repo/</url> | ||
</repository> | ||
</repositories> | ||
</project> |
This file contains 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
This file contains 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
Oops, something went wrong.