代码之家  ›  专栏  ›  技术社区  ›  Kilian

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

  •  0
  • Kilian  · 技术社区  · 6 年前

    enter image description here

    有问题的方案: 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>
    

    聚甲醛

    2 回复  |  直到 6 年前
        1
  •  2
  •   fry    6 年前

    我只是遇到了同样的问题,找不到有关jcenter所需信息的任何文档。我添加了以下字段:

    • 名称
    • 许可证
    • 供应链
    • 开发商

    有了pom中的这些字段,我可以发送我的加入请求。

    我不知道是否所有的都需要。我想至少名字和描述(在你的pom中都没有)是正确的。

        2
  •  1
  •   Kilian    6 年前

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