Is there anyway to extend the ServerSideTestsCase class
in org.apache.sling.testing.samples.integrationtests? From what I can
tell, the module doesn't build or deploy a tests jar, which means if you
want to extend this class from another module or project, you're forced to
copy and paste the class, which seems like an unnecessary burden to me. If
I'm offbase here, let me know, but assuming I'm correct, would it make
sense to add an execution to have that module build a test jar, ie:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
Thus allowing other projects to take a test-dependency on that test jar and
extend the class so that you don;t need to duplicate that existing behavios
to set up your own ServerSideTests?
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.samples.integrationtests</artifactId>
<version>1.0.6</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
--Sean