I have found this example about how to attach Maven side artifact with Groovy scriptlet. I have seen that the MavenSession.lookup is deprecated, and I should use dependency injection. Lets suppose to have the following POM.xml part:
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>attach-config-artifacts</id>
<phase>package</phase>
<goals><goal>execute</goal></goals>
<configuration>
<source>
def helper = session.lookup("org.apache.maven.project.MavenProjectHelper")
new File('${basedir}').eachFileMatch( ~/.[^\.]*.cfg$/ ) { configFile ->
println configFile + " attached as artifact."
helper.attachArtifact( project, "cfg", configFile.name, configFile )
}
</source>
</configuration>
</execution>
</executions>
</plugin>
How can I have the MavenProjetHelper to be injected into my scriptlet? Is it possible? I do not want to create a Mojo or Groovy Mojo, I want to have it inline in the POM.
UPDATE: In case if it is not clear: the example above works perfectly, but uses a deprecated API (MavenSession.lookup). The question is only if it possible to inject anything into a gmaven scriptlet.
You can use
ContainerHelper.lookup
: