Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc #9

Open
IgorRodchenkov opened this issue Apr 24, 2017 · 0 comments
Open

Fix javadoc #9

IgorRodchenkov opened this issue Apr 24, 2017 · 0 comments

Comments

@IgorRodchenkov
Copy link

Comments and, more important, javadoc aren't in great shape here - tons of errors, such as public API methods lack parameter and return value descriptions, use '>' and '<' and other bad symbols, etc. If you guys would really like to make this useful for everyone (and I am pretty sure this this what you promised in your grant/funding applications) tool and eventually deploy/release to OSSRH and then to Maven Central, you have to fix the javadoc (and perhaps much more...).
Try, e.g, adding to the pom.xml the following (to the element):

                    <plugin>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.10.2</version>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>

and then run: mvn clean install

(I forked this code and already tired cleaning up and fixing; so I gave up...)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant