发送请求以在 jcenter 中包含 bintray 包时,Pom 项目文件无效

Invalid Pom project file when sending request to include bintray package in jcenter

首先,我之前成功地将多个项目链接到 JCenter,但我不知道为什么我不能提交这个特定包的包含请求。

尝试执行 "add to Jcenter" 步骤时弹出以下错误消息。

有问题的包裹:https://bintray.com/kilianb/maven/pcg-java

pom:

<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">

    <!-- Project settings -->
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.github.kilianB</groupId>
    <artifactId>pcg-java</artifactId>
    <version>1.0.0</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <javac.target>10</javac.target>
        <bintrayRepository>maven</bintrayRepository>
        <bintrayPackage>pcg-java</bintrayPackage>
    </properties>

    <licenses>
        <license>
            <name>MIT</name>
            <url>https://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Kilian Brachtendorf</name>
            <email>Kilian.Brachtendorf@t-online.de</email>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>Europe/Berlin</timezone>
        </developer>
    </developers>

    <!-- JUnit 5 -->
    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.3.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>5.3.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <compilerVersion>10</compilerVersion>
                    <source>${javac.target}</source>
                    <target>${javac.target}</target>
                    <excludes>
                        <!-- -->
                        <exclude>**/doNotUse/**/*</exclude>
                        <exclude>**/statBenchmark/**/*</exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
                <configuration>
                    <excludePackageNames>com.github.kilianB.pcg.doNotUse:com.github.kilianB.statBenchmark</excludePackageNames>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.0</version>
            </plugin>
        </plugins>
    </build>

    <!-- Environment Settings -->
    <distributionManagement>
        <repository>
            <id>bintray-kilianb-maven</id>
            <name>kilianb-maven</name>
            <url>https://api.bintray.com/maven/kilianb/${bintrayRepository}//${bintrayPackage}/</url>
        </repository>
    </distributionManagement>

</project>

一切都没有错误地构建并安装在我的本地 Maven 存储库中,可以毫无问题地使用工件。这个pom怎么会无效或者缺少哪些必填信息呢?

我刚刚 运行 遇到了同样的问题,但找不到关于 jcenter 需要哪些信息的任何文档。我添加了以下字段:

  • 姓名
  • 描述
  • 许可证
  • scm
  • 开发人员

通过我的 pom 中的这些字段,我能够发送我的收录请求。

不知道是不是都需要。我想至少名称和描述(您的 pom 中都缺少)是。

我能够通过手动添加 xml header 以及 scm 标签到我的 pom 文件来解决这个问题,eclipse 默认情况下不会添加。奇怪的是,这些 pom 文件不久前就被接受了。

<?xml version="1.0" encoding="UTF-8"?>