-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
27 lines (22 loc) · 769 Bytes
/
pom.xml
File metadata and controls
27 lines (22 loc) · 769 Bytes
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.leneghan.lib</groupId>
<artifactId>maybe</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>Maybe</name>
<description>Java implementation of the Maybe monad from Haskell</description>
<url>https://github.com/leneghan/mabye</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
</project>