|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemalocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>lambdaisland</groupId> |
5 | 5 | <artifactId>deep-diff2</artifactId> |
6 | | - <version>2.0.108</version> |
| 6 | + <version>2.1.121</version> |
7 | 7 | <name>deep-diff2</name> |
8 | 8 | <description>Recursively compare Clojure or ClojureScript data structures, and produce a colorized diff of the result.</description> |
9 | 9 | <url>https://github.com/lambdaisland/deep-diff2</url> |
|
12 | 12 | <name>Lambda Island</name> |
13 | 13 | <url>https://lambdaisland.com</url> |
14 | 14 | </organization> |
| 15 | + <properties> |
| 16 | + <project class="build sourceEncoding">UTF-8</project> |
| 17 | + </properties> |
15 | 18 | <licenses> |
16 | 19 | <license> |
17 | 20 | <name>Eclipse Public License 1.0</name> |
|
22 | 25 | <url>https://github.com/lambdaisland/deep-diff2</url> |
23 | 26 | <connection>scm:git:git://github.com/lambdaisland/deep-diff2.git</connection> |
24 | 27 | < developerConnection>scm:git:ssh:// [email protected]/lambdaisland/deep-diff2.git</ developerConnection> |
25 | | - <tag>1fabaa614ad2a2a705720386c5fc3635b1dead0b</tag> |
| 28 | + <tag>4548a492c08fb2f5e09db9f757a95a379a52aa02</tag> |
26 | 29 | </scm> |
27 | 30 | <dependencies> |
28 | | - <dependency> |
29 | | - <groupId>lambdaisland</groupId> |
30 | | - <artifactId>clj-diff</artifactId> |
31 | | - <version>1.1.58</version> |
32 | | - </dependency> |
33 | 31 | <dependency> |
34 | 32 | <groupId>fipp</groupId> |
35 | 33 | <artifactId>fipp</artifactId> |
36 | | - <version>0.6.23</version> |
37 | | - </dependency> |
38 | | - <dependency> |
39 | | - <groupId>mvxcvi</groupId> |
40 | | - <artifactId>arrangement</artifactId> |
41 | | - <version>1.2.1</version> |
| 34 | + <version>0.6.26</version> |
42 | 35 | </dependency> |
43 | 36 | <dependency> |
44 | 37 | <groupId>org.clojure</groupId> |
45 | 38 | <artifactId>core.rrb-vector</artifactId> |
46 | | - <version>0.1.1</version> |
| 39 | + <version>0.1.2</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>lambdaisland</groupId> |
| 43 | + <artifactId>clj-diff</artifactId> |
| 44 | + <version>1.2.62</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>mvxcvi</groupId> |
| 48 | + <artifactId>arrangement</artifactId> |
| 49 | + <version>2.0.0</version> |
47 | 50 | </dependency> |
48 | 51 | </dependencies> |
49 | 52 | <build> |
|
60 | 63 | </resource> |
61 | 64 | </resources> |
62 | 65 | <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>org.apache.maven.plugins</groupId> |
| 68 | + <artifactId>maven-compiler-plugin</artifactId> |
| 69 | + <version>3.8.1</version> |
| 70 | + <configuration> |
| 71 | + <source>1.8</source> |
| 72 | + <target>1.8</target> |
| 73 | + </configuration> |
| 74 | + </plugin> |
63 | 75 | <plugin> |
64 | 76 | <groupId>org.apache.maven.plugins</groupId> |
65 | 77 | <artifactId>maven-jar-plugin</artifactId> |
66 | | - <version>2.4</version> |
| 78 | + <version>3.2.0</version> |
67 | 79 | <configuration> |
68 | 80 | <archive> |
69 | 81 | <manifestEntries> |
70 | | - <git-revision>1fabaa614ad2a2a705720386c5fc3635b1dead0b</git-revision> |
| 82 | + <git-revision>4548a492c08fb2f5e09db9f757a95a379a52aa02</git-revision> |
71 | 83 | </manifestEntries> |
72 | 84 | </archive> |
73 | 85 | </configuration> |
74 | 86 | </plugin> |
75 | 87 | <plugin> |
76 | 88 | <groupId>org.apache.maven.plugins</groupId> |
77 | 89 | <artifactId>maven-gpg-plugin</artifactId> |
78 | | - <version>1.5</version> |
| 90 | + <version>1.6</version> |
79 | 91 | <executions> |
80 | 92 | <execution> |
81 | 93 | <id>sign-artifacts</id> |
|
0 commit comments