bitcoinj-cash / bitcoinj

A library for working with Bitcoin
http://bitcoinj.cash
Apache License 2.0
66 stars 35 forks source link

Problems building JAR - Skip maven-javadoc-plugin? #72

Open ChiefBK opened 6 years ago

ChiefBK commented 6 years ago

I get this error when I build the JAR - mvn clean package -DskipTests

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.10.2:jar (attach-javadocs) on project bitcoinj-core: MavenReportException: Error while creating archive:

I have to add the <skip> to the pom.xml configuration to successfully build the JAR.

            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <notimestamp>true</notimestamp>
                    <skip>true</skip>
                </configuration>
            </plugin>

Should this plugin be removed?