From 60dad984552a8c3ed38333772c29dc958030f848 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 4 Nov 2020 14:55:10 -0800 Subject: [PATCH] Remove redundant and outdated library metadata file library.json is PlatformIO's native library manifest file but library.properties is also supported: https://docs.platformio.org/en/latest/librarymanager/creating.html The library.json file has not been maintained. The version is outdated and it also has an incorrect `platforms` value. So the evidence makes it obvious that having two metadata files in this project has a harmful effect. Since the Arduino development software requires library.properties, the choice of keeping library.properties and removing library.json is clear. --- library.json | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 library.json diff --git a/library.json b/library.json deleted file mode 100644 index d6249c1..0000000 --- a/library.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "NTPClient", - "keywords": "ntp, client, time", - "description": "A NTPClient to connect to a time server", - "authors": - [ - { - "name": "Fabrice Weinberg", - "email": "fabrice@weinberg.me" - }, - { - "name": "Sandeep Mistry", - "email": "s.mistry@arduino.cc" - } - ], - "repository": - { - "type": "git", - "url": "https://github.com/arduino-libraries/NTPClient.git" - }, - "version": "3.1.0", - "frameworks": "arduino", - "platforms": "espressif" -}