I'm exploring the possibility of using Kerby with my own backend
implementation. I've been able to create my backend implementing class and
now I'm working on the tests. I'd like to be able to use the KerbyKdcTest
class from the kerby-kdc-test project but this class isn't published in the
jar.
By adding the following to the kerby-kdc-test pom.xml file:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
I was able to get Maven to create the kerby-kdc-test-1.0.0-RC1-tests.jar
file.
Can this be added to the project so that this class, and others from the
same project are available? Or is there a better way to specify this?
Thanks,
--
Richard M Feezel
[email protected]