Assembly procedure fix
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/db43b0c4 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/db43b0c4 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/db43b0c4 Branch: refs/heads/ignite-5757 Commit: db43b0c40161f8756ab5cad0c1b4b404f0743d8f Parents: bd7a08e Author: Anton Vinogradov <[email protected]> Authored: Thu Jul 20 14:58:09 2017 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Thu Jul 20 14:58:09 2017 +0300 ---------------------------------------------------------------------- DEVNOTES.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/db43b0c4/DEVNOTES.txt ---------------------------------------------------------------------- diff --git a/DEVNOTES.txt b/DEVNOTES.txt index 8a689b8..340153e 100644 --- a/DEVNOTES.txt +++ b/DEVNOTES.txt @@ -2,14 +2,14 @@ Ignite Fabric Maven Build Instructions ====================================== 1) Optional: build Apache Ignite.NET as described at modules/platforms/dotnet/DEVNOTES.txt. -2) Compile and package: +2) Compile and install: - mvn clean package -Pall-java,all-scala,licenses -DskipTests + mvn clean install -Pall-java,all-scala,licenses -DskipTests or if you have built Apache Ignite.NET on the first step use following command: (Note that 'doxygen' should be installed before running this command.) - mvn clean package -Pall-java,all-scala,licenses -DskipTests -DclientDocs + mvn clean install -Pall-java,all-scala,licenses -DskipTests -DclientDocs 3) Javadoc generation (optional): @@ -25,14 +25,14 @@ Ignite Fabric with LGPL Maven Build Instructions ====================================== 1) Optional: build Apache Ignite.NET as described at modules/platforms/dotnet/DEVNOTES.txt. -2) Compile and package: +2) Compile and install: - mvn clean package -Pall-java,all-scala,licenses -DskipTests + mvn clean install -Pall-java,all-scala,licenses -DskipTests or if you have built Apache Ignite.NET on the first step use following command: (Note that 'doxygen' should be installed before running this command.) - mvn clean package -Pall-java,all-scala,licenses -DskipTests -DclientDocs + mvn clean install -Pall-java,all-scala,licenses -DskipTests -DclientDocs 3) Javadoc generation with LGPL (optional): @@ -46,15 +46,15 @@ Look for apache-ignite-fabric-lgpl-<version>-bin.zip in ./target/bin directory. Ignite Hadoop Accelerator Maven Build Instructions ============================================ -1) Compile and package: +1) Compile and install: - mvn clean package -Pall-java,all-scala,licenses -DskipTests + mvn clean install -Pall-java,all-scala,licenses -DskipTests Use 'hadoop.version' parameter to build Ignite against a specific Hadoop version. Use 'spark.version' parameter to build ignite-spark module for a specific Spark version. Version should be >= 2.0.0. For example: - mvn clean package -Pall-java,all-scala,licenses -DskipTests -Dhadoop.version=2.4.2 -Dspark.version=2.1.1 + mvn clean install -Pall-java,all-scala,licenses -DskipTests -Dhadoop.version=2.4.2 -Dspark.version=2.1.1 2) Assembly Hadoop Accelerator: mvn initialize -Prelease -Dignite.edition=hadoop
