no message

This commit is contained in:
Armamem0t 2025-07-10 00:38:54 +08:00
parent 71e5cf3349
commit 6c7fbe0d12
Signed by: minglipro
GPG Key ID: 5F355A77B22AA93B
2 changed files with 18 additions and 12 deletions

View File

@ -51,9 +51,10 @@ maven {
```
# Packs-Dependencys
## minecraft-SLP
- lastUpdateTime 2025-07-09 23:11:05
- lastVersion 1.0.1
### maven (pom.xml)
```xml
<dependency>
```xml<dependency>
<groupId>com.mingliqiye</groupId>
<artifactId>minecraft-SLP</artifactId>
<version>1.0.1</version>
@ -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
<dependency>
```xml<dependency>
<groupId>com.mingliqiye</groupId>
<artifactId>network-endpoint</artifactId>
<version>1.0.3</version>
@ -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
<dependency>
```xml<dependency>
<groupId>com.mingliqiye</groupId>
<artifactId>socket-utilts</artifactId>
<version>1.0.6</version>
@ -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
<dependency>
```xml<dependency>
<groupId>com.mingliqiye</groupId>
<artifactId>string-utilts</artifactId>
<version>1.0.4</version>
@ -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
<dependency>
```xml<dependency>
<groupId>com.mingliqiye</groupId>
<artifactId>tcp-proxy</artifactId>
<version>0.1</version>

View File

@ -23,8 +23,7 @@ class Dependency:
return f"implementation '{self.groupId}:{self.artifactId}:{self.version}'"
def getMaven(self):
return f"""
<dependency>
return f"""<dependency>
<groupId>{self.groupId}</groupId>
<artifactId>{self.artifactId}</artifactId>
<version>{self.version}</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"