diff --git a/README.txt b/README.txt index afd54ecff5e49013f189a472023a1c8980f85f8f..746f6f6a3464daa9e7ffb8eb23c19afa8655a8ae 100644 --- a/README.txt +++ b/README.txt @@ -42,3 +42,8 @@ The XChart Java artifacts are currently hosted on the Xeiam Nexus repository her <url>http://nexus.xeiam.com/content/repositories/snapshots/</url> </repository> </repositories> + +Building +=============== +mvn clean package +mvn javadoc:javadoc \ No newline at end of file diff --git a/pom.xml b/pom.xml index 36406855395861d5c02f57420780206b838ddf3d..9e6e72fe2d3d8b168df4acb2101d93eddabafea0 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,7 @@ <repository> <id>releases</id> <name>Nexus Release Repo</name> - <url>http://nexus.xeiam.com/nexus/content/repositories/releases/</url> + <url>http://nexus.xeiam.com/content/repositories/releases/</url> </repository> </distributionManagement> @@ -47,5 +47,17 @@ <scope>provided</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.8.1</version> + <configuration> + </configuration> + </plugin> + </plugins> + </build> </project>