在AWS CodeArtifact上没有介绍Maven软件包的读数
我希望在codeartifact上介绍一个读书文件。我部署了一个新版本,其中包含一个readme.md
文件,但是描述(以红色标记)被弄清楚了。
找到我应该什么但是我不理解我应该知道什么做我的readme.md
文件。
- 我可以在bitbucket和Intellij内部查看README。
- Java代码。
- Maven项目管理。
遵循@ermiya eskandary评论,我制作了两个读取文件文件,一个是根部,第二个是模块的根。重新部署后,描述仍未显示。
项目结构:
相关模块的POM文件:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>---</artifactId>
<groupId>---</groupId>
<version>1.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>---</artifactId>
<version>1.0.14</version>
<dependencies>
<dependency>
<groupId>---</groupId>
<artifactId>---</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>
I wish to present a README file on CodeArtifact. I deployed a new version that contains a README.MD
file however the Description (marked in red) is greyed out.
Found this AWS documentation however I did not understand what I should do to present my README.MD
file.
- I can view the README at Bitbucket and inside the Intellij.
- Java code.
- Maven project management.
Following @Ermiya Eskandary comment, I made two README files, one in the root and a second in root of the module. After redeploying, the description is still not showing.
Project structure:
The POM file of the relevant module:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>---</artifactId>
<groupId>---</groupId>
<version>1.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>---</artifactId>
<version>1.0.14</version>
<dependencies>
<dependency>
<groupId>---</groupId>
<artifactId>---</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,CodeArtifact当前不支持显示Maven软件包的读数文件。 GetPackageVersionReadMe API将返回所有Maven软件包的“找不到”。
Unfortunately CodeArtifact does not currently support displaying Readme files for Maven packages. The GetPackageVersionReadme API will return "not found" for all Maven packages.