-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLeiningen.nuspec
42 lines (39 loc) · 2.12 KB
/
Leiningen.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>Lein</id>
<title>Leiningen - Clojure Project Automation</title>
<version>2.9.8</version>
<authors>Phil Hagelberg, Alex Osborne, Dan Larkin, and contributors</authors>
<owners>The Leiningen maintainers</owners>
<summary>Leiningen is for automating Clojure projects without setting your hair on fire.</summary>
<description>Leiningen is for automating Clojure projects without setting your hair on fire.
It offers various project-related tasks and can:
* create new projects
* fetch dependencies for your project
* run tests
* run a fully-configured REPL
* compile Java sources (if any)
* run the project (if the project isn't a library)
* generate a maven-style "pom" file for the project for interop
* compile and package projects for deployment
* publish libraries to repositories such as Clojars
* run custom automation tasks written in Clojure (leiningen plug-ins)
If you come from the Java world, Leiningen could be thought of as "Maven meets Ant without the pain". For Ruby and Python folks, Leiningen combines RubyGems/Bundler/Rake and pip/Fabric in a single tool.</description>
<tags>java clojure lein leiningen REPL clojars package manager</tags>
<projectUrl>https://github.com/technomancy/leiningen</projectUrl>
<docsUrl>https://github.com/technomancy/leiningen/tree/2.9.8/doc</docsUrl>
<bugTrackerUrl>https://github.com/technomancy/leiningen/issues</bugTrackerUrl>
<packageSourceUrl>https://github.com/leiningen/leiningen-chocolatey</packageSourceUrl>
<licenseUrl>https://github.com/technomancy/leiningen#license</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://github.com/leiningen/leiningen-chocolatey/raw/master/clojure_logo.png</iconUrl>
<releaseNotes>https://github.com/technomancy/leiningen/blob/2.9.8/NEWS.md</releaseNotes>
<dependencies>
<dependency id="openjdk" version="11.0" />
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>