Skip to content

Commit 2f667e6

Browse files
committed
Stop using version range due to #25
1 parent 2a127e4 commit 2f667e6

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jdk:
1818
env:
1919
global:
2020
- secure: KXF3RVBZDxeASAnleYlTaqvxRRB9FSzSAdVV9h7Kw81+p4UO64b8CPJR1p4fLIVwAp8C4R8h0xZDN3pAv/iyeA4ndIeh9tQXNZBm737RE5x+6x6nf/shP/Em1w9T1s3KmretXoTFK5NJGv2yTesgaIAV/JV1OFvlG6ArswhrPFc=
21-
install: mvn install -DskipTests=true -Dgpg.skip=true -Djackson-databind.version=2.7.3
21+
install: mvn install -DskipTests=true -Dgpg.skip=true
2222
script: mvn test -Djackson-databind.version=2.7.3
23-
after_script: mvn cobertura:cobertura coveralls:cobertura -Djackson-databind.version=2.7.3
23+
after_script: mvn cobertura:cobertura coveralls:cobertura
2424
notifications:
2525
email:
2626
on_failure: always

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
CHANGELOG
22
=========
33

4+
1.2.2 (2017-02-22)
5+
------------------
6+
7+
* Remove the version range. As of today, `jackson-databind` is no longer
8+
resolved correctly when a range is used. GitHub #28.
9+
410
1.2.1 (2016-04-15)
511
------------------
612

Diff for: pom.xml

+1-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@
3535
<email>[email protected]</email>
3636
</developer>
3737
</developers>
38-
<properties>
39-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40-
<jackson-databind.version>[2.7.0,)</jackson-databind.version>
41-
</properties>
4238
<dependencies>
4339
<dependency>
4440
<groupId>junit</groupId>
@@ -49,7 +45,7 @@
4945
<dependency>
5046
<groupId>com.fasterxml.jackson.core</groupId>
5147
<artifactId>jackson-databind</artifactId>
52-
<version>${jackson-databind.version}</version>
48+
<version>2.7.9</version>
5349
</dependency>
5450
</dependencies>
5551
<build>

0 commit comments

Comments
 (0)