jonnybot0 commented on code in PR #277:
URL: https://github.com/apache/groovy-geb/pull/277#discussion_r2178593080


##########
doc/manual/src/docs/asciidoc/120-build-integrations.adoc:
##########
@@ -54,80 +105,67 @@ Below is a valid `pom.xml` file for working with Geb for 
testing (with Spock).
 
 [source,xml,subs="+attributes"]
 ----
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
-        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>{geb-group}.example</groupId>
-  <artifactId>geb-maven-example</artifactId>
-  <packaging>jar</packaging>
-  <version>1</version>
-  <name>Geb Maven Example</name>
-  <url>http://groovy.apache.org/geb/</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.8.2</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.spockframework</groupId>
-      <artifactId>spock-core</artifactId>
-      <version>{spock-core-version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>{geb-group}</groupId>
-      <artifactId>geb-spock</artifactId>
-      <version>{geb-version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.seleniumhq.selenium</groupId>
-      <artifactId>selenium-firefox-driver</artifactId>
-      <version>{selenium-version}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.seleniumhq.selenium</groupId>
-      <artifactId>selenium-support</artifactId>
-      <version>{selenium-version}</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.18.1</version>
-        <configuration>
-          <includes>
-            <include>*Spec.*</include>
-          </includes>
-          <systemPropertyVariables>
-            <geb.build.baseUrl>http://google.com/ncr</geb.build.baseUrl>
-            
<geb.build.reportsDir>target/test-reports/geb</geb.build.reportsDir>
-          </systemPropertyVariables>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.gmaven</groupId>
-        <artifactId>gmaven-plugin</artifactId>
-        <version>1.3</version>
-        <configuration>
-          <providerSelection>1.7</providerSelection>
-        </configuration>
-        <executions>
-          <execution>
-            <goals>
-              <goal>testCompile</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+<project xmlns="http://maven.apache.org/POM/4.0.0";

Review Comment:
   Okay, so I get why you'd pull JUnit. I'm less confident about pulling 
selenium-support, though I suspect you may be right about that being an 
artifact of days of yore. Willing to risk it for now, as this should probably 
be something covered by the geb-example projects, which really ought to be 
folded into this codebase in an examples submodule anyway. Think that's 
something @sdelamo has been looking at.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to