Skip to content

Commit 6280fb5

Browse files
committed
Update pom.xml and add CHANGELOG.md placeholders
1 parent 3d603a7 commit 6280fb5

File tree

2 files changed

+43
-20
lines changed

2 files changed

+43
-20
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Unreleased
2+
3+
## Added
4+
5+
## Fixed
6+
7+
## Changed
8+
19
# 2.0.0.105 (2020-08-19 / 6a7dc03)
210

311
## Added

pom.xml

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
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">
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">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>lambdaisland</groupId>
55
<artifactId>deep-diff2</artifactId>
6-
<version>2.0.0-93</version>
6+
<version>2.0.0.105</version>
77
<name>deep-diff2</name>
8-
<description>Recursively diff Clojure data structures.</description>
8+
<description>Recursively compare Clojure or ClojureScript data structures, and produce a colorized diff of the result.</description>
99
<url>https://github.com/lambdaisland/deep-diff2</url>
1010
<inceptionYear>2018</inceptionYear>
1111
<organization>
@@ -22,41 +22,42 @@
2222
<url>https://github.com/lambdaisland/deep-diff2</url>
2323
<connection>scm:git:git://github.com/lambdaisland/deep-diff2.git</connection>
2424
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/deep-diff2.git</developerConnection>
25-
<tag>c0f3062cab9904e875bcb9d54304bf2d9a04d15f</tag>
25+
<tag>3d603a7e45a311282e78c99c9fcbc51c59c67729</tag>
2626
</scm>
2727
<dependencies>
2828
<dependency>
29-
<groupId>org.clojure</groupId>
30-
<artifactId>clojure</artifactId>
31-
<version>1.10.1</version>
29+
<groupId>lambdaisland</groupId>
30+
<artifactId>clj-diff</artifactId>
31+
<version>1.1.58</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>fipp</groupId>
3535
<artifactId>fipp</artifactId>
36-
<version>0.6.22</version>
36+
<version>0.6.23</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>mvxcvi</groupId>
40+
<artifactId>arrangement</artifactId>
41+
<version>1.2.1</version>
3742
</dependency>
3843
<dependency>
3944
<groupId>org.clojure</groupId>
4045
<artifactId>core.rrb-vector</artifactId>
4146
<version>0.1.1</version>
4247
</dependency>
43-
<dependency>
44-
<groupId>org.clojars.rymndhng</groupId>
45-
<artifactId>clj-diff</artifactId>
46-
<version>1.1.1-SNAPSHOT</version>
47-
</dependency>
48-
<dependency>
49-
<groupId>mvxcvi</groupId>
50-
<artifactId>arrangement</artifactId>
51-
<version>1.2.0</version>
52-
</dependency>
5348
</dependencies>
5449
<build>
5550
<sourceDirectory>resources</sourceDirectory>
5651
<resources>
52+
<resource>
53+
<directory>resources</directory>
54+
</resource>
5755
<resource>
5856
<directory>src</directory>
5957
</resource>
58+
<resource>
59+
<directory>test</directory>
60+
</resource>
6061
</resources>
6162
<plugins>
6263
<plugin>
@@ -66,11 +67,25 @@
6667
<configuration>
6768
<archive>
6869
<manifestEntries>
69-
<Git-Revision>c0f3062cab9904e875bcb9d54304bf2d9a04d15f</Git-Revision>
70+
<git-revision>3d603a7e45a311282e78c99c9fcbc51c59c67729</git-revision>
7071
</manifestEntries>
7172
</archive>
7273
</configuration>
7374
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-gpg-plugin</artifactId>
78+
<version>1.5</version>
79+
<executions>
80+
<execution>
81+
<id>sign-artifacts</id>
82+
<phase>verify</phase>
83+
<goals>
84+
<goal>sign</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
</plugin>
7489
</plugins>
7590
</build>
7691
<repositories>
@@ -86,4 +101,4 @@
86101
<url>https://clojars.org/repo</url>
87102
</repository>
88103
</distributionManagement>
89-
</project>
104+
</project>

0 commit comments

Comments
 (0)