mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2026-01-13 01:44:12 +00:00
docs: 更新文档导航和解析器指南
- 添加演练场(Playground)文档导航区到主 README - 新增 Python 解析器文档链接(开发指南、测试报告、LSP集成) - 更新前端版本号至 0.1.9b19p - 补充 Python 解析器 requests 库使用章节和官方文档链接 - 添加 JavaScript 和 Python 解析器的语言版本和官方文档 - 优化文档结构,分类为项目文档和外部资源
This commit is contained in:
@@ -119,6 +119,19 @@
|
||||
<version>${graalpy.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<!-- GraalPy Python 包资源支持 -->
|
||||
<dependency>
|
||||
<groupId>org.graalvm.python</groupId>
|
||||
<artifactId>python-embedding</artifactId>
|
||||
<version>${graalpy.version}</version>
|
||||
</dependency>
|
||||
<!-- GraalPy LLVM 支持 - 允许多 Context 使用原生模块 (如 unicodedata) -->
|
||||
<dependency>
|
||||
<groupId>org.graalvm.polyglot</groupId>
|
||||
<artifactId>llvm-community</artifactId>
|
||||
<version>${graalpy.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
|
||||
<!-- Compression (Brotli) -->
|
||||
<dependency>
|
||||
@@ -139,6 +152,28 @@
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
<!-- GraalPy Maven Plugin - 仅创建 Python Home,不使用 pip 安装 -->
|
||||
<!-- pip 包手动安装到 src/main/resources/graalpy-packages/,可打包进 jar -->
|
||||
<!-- 安装方法: ./setup-graalpy-packages.sh -->
|
||||
<plugin>
|
||||
<groupId>org.graalvm.python</groupId>
|
||||
<artifactId>graalpy-maven-plugin</artifactId>
|
||||
<version>${graalpy.version}</version>
|
||||
<configuration>
|
||||
<!-- 不声明 packages,避免代理问题 -->
|
||||
<!-- pip 包从 resources/graalpy-packages 加载 -->
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-python-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>process-graalpy-resources</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- 编译 -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
Reference in New Issue
Block a user