Maven Repository - POM file for Groovy composite-groovy 3.3 3.3

Summary

Open Source New Zealand : composite-groovy.

This holds onto the version of Groovy that we are using in our projects. If we migrate the version of Grails, updating it in one place automatically updates every other project that uses Groovy and allows us to keep in sync with Grails..

Declaration

Here is the list of declaration for composite-groovy. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>nz.net.osnz.composite</groupId>
   <artifactId>composite-groovy</artifactId>
   <version>3.3</version>
</dependency>

If you think this Maven repository POM file listing for composite-groovy is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The composite-groovy-3.3 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Groovygroovy-all 2.2.2
Groovy: A powerful, dynamic language for the JVM
13

POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  
  <parent>
    <groupId>nz.net.osnz.parent</groupId>
    <artifactId>osnz-parent</artifactId>
    <version>2.4</version>
  </parent>

  <groupId>nz.net.osnz.composite</groupId>
  <artifactId>composite-groovy</artifactId>
  <version>3.3</version>
  <packaging>jar</packaging>

  <name>Open Source New Zealand : composite-groovy</name>
  <description>
    This holds onto the version of Groovy that we are using in our projects. If we migrate the version of Grails, updating it in one place
    automatically updates every other project that uses Groovy and allows us to keep in sync with Grails.
  </description>
  <url>https://github.com/OpenSourceNZ/composite-groovy</url>

  <dependencies>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>2.2.2</version>
    </dependency>
  </dependencies>

  <scm>
    <url>https://github.com/OpenSourceNZ/composite-groovy</url>
    <connection>scm:git:git@github.com/OpenSourceNZ/composite-groovy.git</connection>
    <developerConnection>scm:git:git@github.com:OpenSourceNZ/composite-groovy.git</developerConnection>
    <tag>composite-groovy-3.3</tag>
  </scm>

</project>