ensure we can find easily wiengrower blocks to uncomment once released + removing IT dep on it until it is active
diff --git a/documentation/pom.xml b/documentation/pom.xml
index 419032c..133183e 100644
--- a/documentation/pom.xml
+++ b/documentation/pom.xml
@@ -57,7 +57,7 @@
         </exclusion>
       </exclusions>
     </dependency>
-    <!-- deactivated until the release
+    <!-- NEEDS_WINEGROWER_RELEASE deactivated until the release
     <dependency>
       <groupId>${project.groupId}.knights</groupId>
       <artifactId>winegrower-knight</artifactId>
diff --git a/integration-test/pom.xml b/integration-test/pom.xml
index fb19377..8e427a3 100644
--- a/integration-test/pom.xml
+++ b/integration-test/pom.xml
@@ -79,12 +79,14 @@
       <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
+    <!-- NEEDS_WINEGROWER_RELEASE commented until winegrower is released
     <dependency>
       <groupId>${project.groupId}.knights</groupId>
       <artifactId>winegrower-knight</artifactId>
       <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
+    -->
   </dependencies>
 
   <build>
diff --git a/integration-test/src/test/java/org/apache/geronimo/arthur/integrationtests/MavenTest.java b/integration-test/src/test/java/org/apache/geronimo/arthur/integrationtests/MavenTest.java
index a61e8b8..5bca5d7 100644
--- a/integration-test/src/test/java/org/apache/geronimo/arthur/integrationtests/MavenTest.java
+++ b/integration-test/src/test/java/org/apache/geronimo/arthur/integrationtests/MavenTest.java
@@ -48,7 +48,7 @@
 
 
     @Test
-    @EnabledIfSystemProperty(named = "winegrower.enabled", matches = "true") // deactivated until the release
+    @EnabledIfSystemProperty(named = "winegrower.enabled", matches = "NEEDS_WINEGROWER_RELEASE") // deactivated until the release
     @Spec(expectedOutput = "Starting org.apache.geronimo.arthur.integrationtests.Application")
     void scr() {}
 
diff --git a/knights/pom.xml b/knights/pom.xml
index 5aabbff..95acf69 100644
--- a/knights/pom.xml
+++ b/knights/pom.xml
@@ -34,7 +34,7 @@
 
   <modules>
     <module>jsch-knight</module>
-    <!-- deactivated until the release
+    <!-- NEEDS_WINEGROWER_RELEASE deactivated until the release
     <module>winegrower-knight</module>
     -->
   </modules>
diff --git a/pom.xml b/pom.xml
index 067b317..5dbd0c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@
     <!-- knights -->
     <jsch.version>0.1.55</jsch.version>
     <graalvm.version>19.2.1</graalvm.version>
-    <winegrower.version>1.0-SNAPSHOT</winegrower.version>
+    <winegrower.version>1.0-SNAPSHOT</winegrower.version> <!-- search for NEEDS_WINEGROWER_RELEASE once released -->
 
     <!-- plugin versions/confs -->
     <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>