forked from GlenKPeterson/Paguro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
103 lines (94 loc) · 3.58 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
97
98
99
100
101
102
103
<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>org.organicdesign.fp</groupId>
<!--
To build javadoc:
javadoc:javadoc
To see updated versions available: http://mojo.codehaus.org/versions-maven-plugin/
versions:display-dependency-updates
To see third-party licenses: http://mojo.codehaus.org/license-maven-plugin/
license:add-third-party
pmd:cpd reports on cut and pasted code in your project.
Show the dependency tree:
http://maven.apache.org/plugins/maven-dependency-plugin/examples/resolving-conflicts-using-the-dependency-tree.html
dependency:tree
TODO: Rename to BlochItem15 or MinimizeMutability or IceBox or UnColl JImm (Unmodifiable Collections for Java Immutability)
TODO: Really, more like Sequential, or Incremental mutability - different kind of updates. Consecutive, successional...
TODO: Flonium, as in Wonderflonium that Dr. Horrible used for his freeze ray. Rich Hickey calls them constant values
ImmutableJava is not allowed because Java is a registered trademark of Oracle and specifically prohibited from
the names of Java-related products.
-->
<artifactId>UncleJim</artifactId>
<version>0.9.6-SNAPSHOT</version>
<packaging>jar</packaging>
<name>UncleJim</name>
<description>Clojure collections and a Sequence abstraction for Java 8+, immutably, type-safely, and with good
performance.
</description>
<url>https://github.com/GlenKPeterson/UncleJim</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<comments>The license for most of the files in this
project.</comments>
</license>
<license>
<name>Eclipse Public License - v 1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<comments>For the persistent collections in the
collections/ folder. These files are derivative
works based on the Clojure source code.</comments>
</license>
</licenses>
<developers>
<developer>
<name>Glen K. Peterson</name>
<email>[email protected]</email>
<organization>PlanBase Inc.</organization>
<organizationUrl>http://glenpeterson.blogspot.com/</organizationUrl>
</developer>
</developers>
<build>
<defaultGoal>compile</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<!--
I'm favoring the maven.compiler properties over this for now...
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
<target>1.8</target>
-->
<compilerArgs>
<arg>-Xlint</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- JavaDoc wasn't providing the right links to the Java APIs with the default version of the plugin on my machine. -->
<version>2.10.2</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>