diff --git a/README.MD b/README.MD index de3c194..6a47307 100644 --- a/README.MD +++ b/README.MD @@ -51,9 +51,10 @@ maven { ``` # Packs-Dependencys ## minecraft-SLP +- lastUpdateTime 2025-07-09 23:11:05 +- lastVersion 1.0.1 ### maven (pom.xml) -```xml - +```xml com.mingliqiye minecraft-SLP 1.0.1 @@ -68,9 +69,10 @@ implementation 'com.mingliqiye:minecraft-SLP:1.0.1' implementation("com.mingliqiye:minecraft-SLP:1.0.1") ``` ## network-endpoint +- lastUpdateTime 2025-07-09 23:00:05 +- lastVersion 1.0.3 ### maven (pom.xml) -```xml - +```xml com.mingliqiye network-endpoint 1.0.3 @@ -85,9 +87,10 @@ implementation 'com.mingliqiye:network-endpoint:1.0.3' implementation("com.mingliqiye:network-endpoint:1.0.3") ``` ## socket-utilts +- lastUpdateTime 2025-07-05 22:50:19 +- lastVersion 1.0.6 ### maven (pom.xml) -```xml - +```xml com.mingliqiye socket-utilts 1.0.6 @@ -102,9 +105,10 @@ implementation 'com.mingliqiye:socket-utilts:1.0.6' implementation("com.mingliqiye:socket-utilts:1.0.6") ``` ## string-utilts +- lastUpdateTime 2025-07-05 14:53:52 +- lastVersion 1.0.4 ### maven (pom.xml) -```xml - +```xml com.mingliqiye string-utilts 1.0.4 @@ -119,9 +123,10 @@ implementation 'com.mingliqiye:string-utilts:1.0.4' implementation("com.mingliqiye:string-utilts:1.0.4") ``` ## tcp-proxy +- lastUpdateTime 2025-07-05 23:30:53 +- lastVersion 0.1 ### maven (pom.xml) -```xml - +```xml com.mingliqiye tcp-proxy 0.1 diff --git a/update/update.py b/update/update.py index 454c7a4..6ac6e04 100644 --- a/update/update.py +++ b/update/update.py @@ -23,8 +23,7 @@ class Dependency: return f"implementation '{self.groupId}:{self.artifactId}:{self.version}'" def getMaven(self): - return f""" - + return f""" {self.groupId} {self.artifactId} {self.version} @@ -134,6 +133,8 @@ if __name__ == '__main__': for metadata in getdatas(): readme += f"## {metadata.artifactId}\n" + readme += f"- lastUpdateTime {metadata.versioning.lastUpdated}\n" + readme += f"- lastVersion {metadata.versioning.latest}\n" dep = Dependency.of(metadata) readme += f"### maven (pom.xml)\n" readme += f"```xml{dep.getMaven()}```\n"