-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
96 lines (89 loc) · 3.63 KB
/
pom.xml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2013 Sebastian Hoß <[email protected]>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
-->
<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>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PARENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<parent>
<groupId>com.github.sebhoss</groupId>
<artifactId>clojure-parent</artifactId>
<version>1.0.2</version>
</parent>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- INFORMATIONS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<artifactId>finj</artifactId>
<version>2.0.1-SNAPSHOT</version>
<packaging>clojure</packaging>
<inceptionYear>2013</inceptionYear>
<name>finj</name>
<description>Finance library written in Clojure.</description>
<url>https://github.com/sebhoss/finj</url>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- SOURCE -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<scm>
<connection>scm:git:[email protected]:sebhoss/finj.git</connection>
<developerConnection>scm:git:[email protected]:sebhoss/finj.git</developerConnection>
<tag>master</tag>
<url>${project.url}</url>
</scm>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DEVELOPERS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<contributors>
<contributor>
<name>Adrian Heinemann</name>
<email>[email protected]</email>
<url>http://heinemann.ms/</url>
<roles>
<role>Developer</role>
</roles>
<timezone>Europe/Berlin</timezone>
</contributor>
</contributors>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DEPENDENCIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>clojure-bom</artifactId>
<version>1.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
</dependency>
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>def-clj</artifactId>
</dependency>
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>math-clj</artifactId>
</dependency>
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>bootstrap-clj</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>