Skip to content

Commit 2410b60

Browse files
authored
use https for links and add licenses (#335)
1 parent f258e8e commit 2410b60

File tree

6 files changed

+56
-8
lines changed

6 files changed

+56
-8
lines changed

avro/pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@
1717
<description>Support for reading and writing AVRO-encoded data via Jackson
1818
abstractions.
1919
</description>
20-
<url>http://github.com/FasterXML/jackson-dataformats-binary</url>
20+
<url>https://github.com/FasterXML/jackson-dataformats-binary</url>
21+
22+
<licenses>
23+
<license>
24+
<name>The Apache Software License, Version 2.0</name>
25+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
2129

2230
<properties>
2331
<!-- Generate PackageVersion.java into this directory. -->
@@ -46,7 +54,7 @@ abstractions.
4654
<dependency>
4755
<groupId>ch.qos.logback</groupId>
4856
<artifactId>logback-classic</artifactId>
49-
<version>1.2.3</version>
57+
<version>1.2.11</version>
5058
<scope>test</scope>
5159
</dependency>
5260
<!-- For validating more complex comparisons -->

cbor/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@
1818
([CBOR](https://www.rfc-editor.org/info/rfc7049)
1919
encoded data using Jackson abstractions (streaming API, data binding, tree model)
2020
</description>
21-
<url>http://github.com/FasterXML/jackson-dataformats-binary</url>
21+
<url>https://github.com/FasterXML/jackson-dataformats-binary</url>
22+
23+
<licenses>
24+
<license>
25+
<name>The Apache Software License, Version 2.0</name>
26+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
2230

2331
<properties>
2432
<!-- Generate PackageVersion.java into this directory. -->

ion/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@
1919
encoded data using Jackson abstractions (streaming API, data binding,
2020
tree model)
2121
</description>
22-
<url>http://github.com/FasterXML/jackson-dataformat-ion</url>
22+
<url>https://github.com/FasterXML/jackson-dataformat-ion</url>
23+
24+
<licenses>
25+
<license>
26+
<name>The Apache Software License, Version 2.0</name>
27+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
2331

2432
<properties>
2533
<packageVersion.dir>com/fasterxml/jackson/dataformat/ion</packageVersion.dir>

pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@
1313
<description>Parent pom for Jackson binary dataformats.
1414
</description>
1515

16+
<licenses>
17+
<license>
18+
<name>The Apache Software License, Version 2.0</name>
19+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
1624
<modules>
1725
<module>cbor</module>
1826
<module>smile</module>
@@ -25,8 +33,8 @@
2533
<scm>
2634
<connection>scm:git:[email protected]:FasterXML/jackson-dataformats-binary.git</connection>
2735
<developerConnection>scm:git:[email protected]:FasterXML/jackson-dataformats-binary.git</developerConnection>
28-
<url>http://github.com/FasterXML/jackson-dataformats-binary</url>
29-
<tag>jackson-dataformats-binary-2.12.0</tag>
36+
<url>https://github.com/FasterXML/jackson-dataformats-binary</url>
37+
<tag>jackson-dataformats-binary-2.14.0</tag>
3038
</scm>
3139
<issueManagement>
3240
<url>https://github.com/FasterXML/jackson-dataformats-binary/issues</url>

protobuf/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@
1717
<description>Support for reading and writing protobuf-encoded data via Jackson
1818
abstractions.
1919
</description>
20-
<url>http://github.com/FasterXML/jackson-dataformats-binary</url>
20+
<url>https://github.com/FasterXML/jackson-dataformats-binary</url>
21+
22+
<licenses>
23+
<license>
24+
<name>The Apache Software License, Version 2.0</name>
25+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
2129

2230
<properties>
2331
<packageVersion.dir>com/fasterxml/jackson/dataformat/protobuf</packageVersion.dir>

smile/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@
1818
encoded data using Jackson abstractions (streaming API, data binding,
1919
tree model)
2020
</description>
21-
<url>http://github.com/FasterXML/jackson-dataformats-binary</url>
21+
<url>https://github.com/FasterXML/jackson-dataformats-binary</url>
22+
23+
<licenses>
24+
<license>
25+
<name>The Apache Software License, Version 2.0</name>
26+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
2230

2331
<properties>
2432
<packageVersion.dir>com/fasterxml/jackson/dataformat/smile</packageVersion.dir>

0 commit comments

Comments
 (0)