I am attempting to create a plugin using the class "hudson.model.TransientBuildActionFactory"
However, when I add an import line for this to my Eclipse project I get an error saying it cannot find any such thing. When I try and build my new plugin using this class in Maven it complains about not being able to find it.
I have added several repositories to my POM file and none of them seem to help. I can post the POM file is necessary, but if someone could post one with an repository entry pointing to a place where this class is known to exist that should be all I need.
Not sure why Maven can find TransientProjectActionFactory, but not this new one. The repo. entry I tried adding to my POM file was this:
<repository>
<id>jenkinsci</id>
<name>jenkinsci-releases</name>
<url>
http://repo.jenkins-ci.org/javanet2</url>
</repository>