-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
31 lines (29 loc) · 1.35 KB
/
project.clj
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
;
; Copyright © 2014 Peter Monks (pmonks@gmail.com)
;
; All rights reserved. This program and the accompanying materials
; are made available under the terms of the Eclipse Public License v1.0
; which accompanies this distribution, and is available at
; http://www.eclipse.org/legal/epl-v10.html
;
; Contributors:
; Peter Monks - initial implementation
; Carlo Sciolla - implemented "install" task
(def alfresco-version "5.0.d")
(defproject lein-amp "0.7.0-SNAPSHOT"
:description "Leiningen plugin for generating Alfresco Module Package (AMP) files."
:url "https://github.com/lambdalf/lein-amp"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.5.0"
:repositories [
["alfresco" "https://artifacts.alfresco.com/nexus/content/groups/public/"]
]
:dependencies [
[me.raynes/fs "1.4.6"]
[org.alfresco/alfresco-mmt ~alfresco-version]
[tk.skuro.alfresco/h2-support "1.6"]
[com.h2database/h2 "1.4.190"]
[org.eclipse.jetty/jetty-runner "9.2.3.v20140905" :exclusions [org.eclipse.jetty/jetty-jsp]]
]
:eval-in-leiningen true)