Skip to content

Commit aad4d15

Browse files
docs(README): changes for maven central from bintray
See #25
1 parent a45df68 commit aad4d15

File tree

1 file changed

+11
-27
lines changed

1 file changed

+11
-27
lines changed

README.md

Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
jackson-json-reference
22
==============
33

4-
[![Bintray](https://img.shields.io/badge/bintray-parent-green.svg)][bintray-parent]
4+
Parent:
55
[![Build Status](https://travis-ci.org/AndersDJohnson/jackson-json-reference.png)](https://travis-ci.org/AndersDJohnson/jackson-json-reference)
66
[![Codecov](https://img.shields.io/codecov/c/github/AndersDJohnson/jackson-json-reference.svg)](http://codecov.io/github/AndersDJohnson/jackson-json-reference)
77

8-
* [![Bintray Core](https://img.shields.io/badge/bintray-core-green.svg)][bintray-core] [![Download Core](https://api.bintray.com/packages/AndersDJohnson/maven/jackson-json-reference-core/images/download.svg) ][download]
9-
* [![Bintray CLI](https://img.shields.io/badge/bintray-cli-green.svg)][bintray-cli] [![Download CLI](https://api.bintray.com/packages/AndersDJohnson/maven/jackson-json-reference-cli/images/download.svg) ][download-cli]
8+
* Core: [![Download Core](https://img.shields.io/maven-central/v/me.andrz.jackson/jackson-json-reference-core.svg) ][download]
9+
* CLI:   [![Download CLI](https://img.shields.io/maven-central/v/me.andrz.jackson/jackson-json-reference-cli.svg) ][download-cli]
1010

1111
[JSON Reference] implementation for Java, based on [Jackson]. Process references in JSON documents, such as in [JSON Schema]. Aims for but not limited to full [spec](#specs) compliance.
1212

@@ -72,22 +72,11 @@ mapper.writeValue(new File("out.json"), node);
7272
### Maven
7373

7474
```xml
75-
<repositories>
76-
<repository>
77-
<snapshots>
78-
<enabled>false</enabled>
79-
</snapshots>
80-
<id>bintray-AndersDJohnson-maven</id>
81-
<name>bintray-AndersDJohnson-maven</name>
82-
<url>https://dl.bintray.com/AndersDJohnson/maven</url>
83-
</repository>
84-
</repositories>
85-
8675
<dependencies>
8776
<dependency>
8877
<groupId>me.andrz.jackson</groupId>
8978
<artifactId>jackson-json-reference-core</artifactId>
90-
<version>0.2.0</version>
79+
<version>0.2.1</version>
9180
</dependency>
9281
</dependencies>
9382
```
@@ -96,21 +85,19 @@ mapper.writeValue(new File("out.json"), node);
9685

9786
```gradle
9887
repositories {
99-
maven {
100-
url 'https://dl.bintray.com/AndersDJohnson/maven'
101-
}
88+
mavenCentral()
10289
}
10390
10491
dependencies {
105-
compile 'me.andrz.jackson:jackson-json-reference-core:0.2.0'
92+
compile 'me.andrz.jackson:jackson-json-reference-core:0.2.1'
10693
}
10794
```
10895

10996
### Manual
11097

111-
Download JAR(s) from BinTray:
112-
* [Core][download]
113-
* [CLI][download-cli]
98+
Download JAR(s) from Maven Central:
99+
* Core:&nbsp;[![Download Core](https://img.shields.io/maven-central/v/me.andrz.jackson/jackson-json-reference-core.svg) ][download]
100+
* CLI:&nbsp;&nbsp;&nbsp;[![Download CLI](https://img.shields.io/maven-central/v/me.andrz.jackson/jackson-json-reference-cli.svg) ][download-cli]
114101

115102
## License
116103

@@ -122,8 +109,5 @@ See [LICENSE](LICENSE).
122109
[JSON Pointer]: http://tools.ietf.org/html/rfc6901
123110
[JSON Schema]: http://json-schema.org/
124111
[JSON Schema Spec]: https://tools.ietf.org/html/draft-zyp-json-schema-04
125-
[download]: https://bintray.com/artifact/download/AndersDJohnson/maven/me/andrz/jackson/jackson-json-reference-core/0.2.0/jackson-json-reference-core-0.2.0.jar
126-
[download-cli]: https://bintray.com/artifact/download/AndersDJohnson/maven/me/andrz/jackson/jackson-json-reference-cli/0.2.0/jackson-json-reference-cli-0.2.0.jar
127-
[bintray-parent]: https://bintray.com/AndersDJohnson/maven/jackson-json-reference
128-
[bintray-core]: https://bintray.com/AndersDJohnson/maven/jackson-json-reference-core
129-
[bintray-cli]: https://bintray.com/AndersDJohnson/maven/jackson-json-reference-cli
112+
[download]: https://repo1.maven.org/maven2/me/andrz/jackson/jackson-json-reference-core/0.2.1/jackson-json-reference-core-0.2.1.jar
113+
[download-cli]: https://repo1.maven.org/maven2/me/andrz/jackson/jackson-json-reference-cli/0.2.1/jackson-json-reference-cli-0.2.1.jar

0 commit comments

Comments
 (0)