@@ -42,17 +42,26 @@ Build using Maven:
4242
4343 mvn clean install
4444
45- To see an example of the updated Javadocs, use the Javadoc target:
45+ To see an example of the Javadocs for the uml-java-doclet source code , use the Javadoc target:
4646
4747 mvn javadoc:javadoc
4848
4949Javadoc output is in target/site/apidocs.
5050
5151### Installing ###
5252
53- To generate UML diagrams for your own project, add the following to your pom.xml. You will need to build
54- the project from scratch in your local environment; the distribution has not yet been uploaded to
55- Maven Central:
53+ Use http://jitpack.io to automatically build and install the JAR file. Add the JitPack repository to your POM:
54+
55+ <repositories>
56+ <repository>
57+ <id>jitpack.io</id>
58+ <url>https://jitpack.io</url>
59+ </repository>
60+ </repositories>
61+
62+ Note: Not published to Maven Central; this is a much easier alternative.
63+
64+ To generate UML diagrams for your own project, add the following to your POM:
5665
5766 <build>
5867 <plugins>
@@ -62,9 +71,9 @@ Maven Central:
6271 <configuration>
6372 <doclet>info.leadinglight.umljavadoclet.UmlJavaDoclet</doclet>
6473 <docletArtifact>
65- <groupId>info.leadinglight </groupId>
74+ <groupId>com.github.gboersma </groupId>
6675 <artifactId>uml-java-doclet</artifactId>
67- <version>1.0-SNAPSHOT </version>
76+ <version>1.1 </version>
6877 </docletArtifact>
6978 <useStandardDocletOptions>true</useStandardDocletOptions>
7079 <additionalOptions>
@@ -76,7 +85,7 @@ Maven Central:
7685 </build>
7786
7887Note: Version 3+ of the maven-javadoc-plugin uses the ` additionalOptions ` tag to specify additional javadoc tags.
79- The previous ` additionalparm ` tag no longer works correctly. Be sure to upgrade your POMs accordingly.
88+ The previous ` additionalparam ` tag no longer works correctly. Be sure to upgrade your POMs accordingly.
8089
8190### Generating Javadocs to Different Folder ###
8291Refer to: https://maven.apache.org/plugins-archives/maven-javadoc-plugin-3.2.0/examples/output-configuration.html
0 commit comments