This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b5b25191d5 IGNITE-23382 Remove obsolete maven profiles mention: 
all-scala, all-other (#11572)
4b5b25191d5 is described below

commit 4b5b25191d51fcef41c04875490b4af7b39037af
Author: Vladislav Novikov <[email protected]>
AuthorDate: Tue Oct 15 18:40:01 2024 +0300

    IGNITE-23382 Remove obsolete maven profiles mention: all-scala, all-other 
(#11572)
---
 .github/workflows/commit-check.yml |  4 ++--
 DEVNOTES.txt                       | 10 +++++-----
 examples/DEVNOTES.txt              |  2 +-
 modules/platforms/dotnet/build.ps1 |  2 +-
 modules/yardstick/DEVNOTES.txt     |  2 +-
 pom.xml                            |  6 ------
 scripts/build-module.sh            |  4 ++--
 scripts/build.sh                   |  2 +-
 8 files changed, 13 insertions(+), 19 deletions(-)

diff --git a/.github/workflows/commit-check.yml 
b/.github/workflows/commit-check.yml
index b736458a4f5..bab2bb03d15 100644
--- a/.github/workflows/commit-check.yml
+++ b/.github/workflows/commit-check.yml
@@ -60,11 +60,11 @@ jobs:
 
       - name: Run codestyle and licenses checks
         run: |
-          ./mvnw test-compile 
-Pall-java,licenses,lgpl,checkstyle,examples,all-scala,scala,check-licenses -B 
-V
+          ./mvnw test-compile 
-Pall-java,licenses,lgpl,checkstyle,examples,scala,check-licenses -B -V
 
       - name: Run abandoned tests checks.
         run : |
-          ./mvnw test -Pcheck-test-suites,all-java,all-scala,scala -B -V
+          ./mvnw test -Pcheck-test-suites,all-java,scala -B -V
 
       - name: Check javadocs.
         run : |
diff --git a/DEVNOTES.txt b/DEVNOTES.txt
index f65226705e2..9774d08b585 100644
--- a/DEVNOTES.txt
+++ b/DEVNOTES.txt
@@ -14,12 +14,12 @@ Apache Ignite Maven Build Instructions
 ======================================
 1) Compile and install:
 
-        ./mvnw clean install -Pall-java,all-scala,licenses -DskipTests
+        ./mvnw clean install -Pall-java,licenses -DskipTests
 
    or if you have to build .NET part as well, use the following command:
    (Note that 'doxygen', `docfx`, '.NET Core SDK 3.1', 'PowerShell' should be 
installed before running this command.)
 
-        ./mvnw clean install -Pall-java,all-scala,licenses,platforms 
-DskipTests -DclientDocs
+        ./mvnw clean install -Pall-java,licenses,platforms -DskipTests 
-DclientDocs
 
 2) Javadoc generation (optional):
 
@@ -42,12 +42,12 @@ Apache Ignite with LGPL Maven Build Instructions
 ================================================
 1) Compile and install:
 
-        ./mvnw clean install -Pall-java,all-scala,licenses -DskipTests
+        ./mvnw clean install -Pall-java,licenses -DskipTests
 
    or if you have to build .NET part as well, use the following command:
    (Note that 'doxygen', `docfx`, '.NET Core SDK 3.1', 'PowerShell' should be 
installed before running this command.)
 
-        ./mvnw clean install -Pall-java,all-scala,licenses,platforms 
-DskipTests -DclientDocs
+        ./mvnw clean install -Pall-java,licenses,platforms -DskipTests 
-DclientDocs
 
 2) Javadoc generation with LGPL (optional):
 
@@ -165,7 +165,7 @@ Ignite Release Instructions
 
    3.1) Deploy Ignite to maven repository, prepares sources and binaries.
 
-                ./mvnw deploy 
-Papache-release,gpg,all-java,all-scala,licenses,deploy-ignite-site 
-Dignite.edition=apache-ignite -DskipTests
+                ./mvnw deploy 
-Papache-release,gpg,all-java,licenses,deploy-ignite-site 
-Dignite.edition=apache-ignite -DskipTests
 
    3.2) Javadoc generation:
 
diff --git a/examples/DEVNOTES.txt b/examples/DEVNOTES.txt
index 89389fee37b..d491d9647f7 100644
--- a/examples/DEVNOTES.txt
+++ b/examples/DEVNOTES.txt
@@ -2,7 +2,7 @@ Ignite Examples Build Instructions
 ==================================
 1) Compile and install Ignite from project root folder:
 
-        ./mvnw clean install -Pall-java,all-scala,licenses -DskipTests
+        ./mvnw clean install -Pall-java,licenses -DskipTests
 
    (If needed, refer DEVNOTES.txt in project root folder for most up-to-date 
build instructions.)
 
diff --git a/modules/platforms/dotnet/build.ps1 
b/modules/platforms/dotnet/build.ps1
index 8e94eef344e..ca1503e8506 100644
--- a/modules/platforms/dotnet/build.ps1
+++ b/modules/platforms/dotnet/build.ps1
@@ -83,7 +83,7 @@ param (
     [switch]$clean,
     [ValidateSet("Release", "Debug")]
     [string]$configuration="Release",
-    [string]$mavenOpts="-U 
-P-lgpl,-scala,-all-scala,-spark-2.4,-examples,-test,-benchmarks 
-Dmaven.javadoc.skip=true",
+    [string]$mavenOpts="-U 
-P-lgpl,-scala,-spark-2.4,-examples,-test,-benchmarks 
-Dmaven.javadoc.skip=true",
        
[string]$jarDirs="modules\indexing\target,modules\core\target,modules\spring\target",
        [string]$version="",
        [string]$versionSuffix=""
diff --git a/modules/yardstick/DEVNOTES.txt b/modules/yardstick/DEVNOTES.txt
index d835e04da88..e79089b88e7 100644
--- a/modules/yardstick/DEVNOTES.txt
+++ b/modules/yardstick/DEVNOTES.txt
@@ -3,7 +3,7 @@ Building from Ignite sources
 
 Run
 
-./mvnw clean package -Pall-java,all-other -pl modules/yardstick -am -DskipTests
+./mvnw clean package -Pall-java -pl modules/yardstick -am -DskipTests
 
 in the Apache Ignite root directory.
 
diff --git a/pom.xml b/pom.xml
index a11ecf39848..e1fe2c48a40 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,12 +83,6 @@
             </modules>
         </profile>
 
-        <profile>
-            <id>all-other</id> <!-- used to update project versions and check 
all modules compilation -->
-            <modules> <!-- sorted alphabetically -->
-            </modules>
-        </profile>
-
         <profile>
             <id>ducktests</id>
             <modules>
diff --git a/scripts/build-module.sh b/scripts/build-module.sh
index b3260b85d60..0bfa836ef83 100755
--- a/scripts/build-module.sh
+++ b/scripts/build-module.sh
@@ -22,5 +22,5 @@
 # Usage: ./scripts/build-module.sh ducktests
 #
 
-mvn clean -Pall-java,all-scala
-mvn package -pl :ignite-$1 -Pall-java,all-scala -DskipTests 
-Dmaven.javadoc.skip=true -am
\ No newline at end of file
+mvn clean -Pall-java
+mvn package -pl :ignite-$1 -Pall-java -DskipTests -Dmaven.javadoc.skip=true -am
\ No newline at end of file
diff --git a/scripts/build.sh b/scripts/build.sh
index d6d83050c90..9b579551347 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -22,4 +22,4 @@
 # Usage: ./scripts/build.sh
 #
 
-mvn clean package -Pall-java,all-scala -DskipTests -Dmaven.javadoc.skip=true
\ No newline at end of file
+mvn clean package -Pall-java -DskipTests -Dmaven.javadoc.skip=true
\ No newline at end of file

Reply via email to