Getting the MavenProjectHelper in GMaven script without session.lookup

675 Views Asked by At

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.

2

There are 2 best solutions below

2
On

You can use ContainerHelper.lookup:

def projectHelper = container.lookup("org.apache.maven.project.MavenProjectHelper")
def artifactFile = new File(project.build.directory, "artifact.zip")
projectHelper.attachArtifact(project, "zip", null, artifactFile)
3
On

In this particular case, it might be simpler to just use the Build Helper plugin.

But assuming you don't want to go that route for whatever reason, with GMaven, you have to reference all objects through the properties object (as shown here). Also, GMaven isn't maintained anymore. I suggest this instead

<plugin>
  <groupId>org.codehaus.gmavenplus</groupId>
  <artifactId>gmavenplus-plugin</artifactId>
  <version>1.2</version>
  <executions>
    <execution>
      <id>attach</id>
      <configuration>
        <scripts>
          <script><![CDATA[
            def helper = session.lookup("org.apache.maven.project.MavenProjectHelper")
            project.basedir.eachFileMatch( ~/.[^\.]*.cfg$/ ) { configFile ->
              helper.attachArtifact(project, "cfg", configFile.name, configFile)
              println "${configFile.name} attached as artifact."
            }
          ]]></script>
        </scripts>
      </configuration>
      <goals>
        <goal>execute</goal>
      </goals>
      <phase>prepare-package</phase>
    </execution>
  </executions>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>2.3.3</version>
    </dependency>
  </dependencies>
</plugin>

You'll notice I changed the phase to prepare-package instead of package. This is because goals attached to a phase happen after all the default goals have been run for that phase. Hence attaching it to the package phase would add it to the list of artifacts after the package had already been created (which I assume was not what you wanted).


EDIT: In the light of your edit. This is actually a problem I hadn't considered before. It looks like there is no way without calling through the session (you can call session.container.lookup, but session.getContainer() is deprecated too). What you really want to do is get access to the Plexus container to get to this object and there's no good way to do that without the plugin itself wiring it up for you (and in fact this is what the Build Helper plugin does). You can add objects to the list of things that it's bound to, but I don't think there's a Maven expression you can use to get ahold of the object you need. GMavenPlus 1.3 will include this functionality. I've added it to the 1.3-SNAPSHOT if you'd like to give it a shot (it's in the Codehaus repo but it might be a day before it's in Maven Central). Here's what it'd look like

<plugin>
  <groupId>org.codehaus.gmavenplus</groupId>
  <artifactId>gmavenplus-plugin</artifactId>
  <version>1.3-SNAPSHOT</version>
  <executions>
    <execution>
      <id>attach</id>
      <configuration>
        <scripts>
          <script><![CDATA[
            project.basedir.eachFileMatch( ~/.[^\.]*.cfg$/ ) { configFile ->
              projectHelper.attachArtifact(project, "cfg", configFile.name, configFile)
              println "${configFile.name} attached as artifact."
            }
          ]]></script>
        </scripts>
      </configuration>
      <goals>
        <goal>execute</goal>
      </goals>
      <phase>prepare-package</phase>
    </execution>
  </executions>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>2.3.4</version>
    </dependency>
  </dependencies>
</plugin>

If you have time, lemme know if this solves your problem. Also, if I've totally misunderstood your question again, let me know :)