You can download vertx-lang-groovy-3.4.1.jar in this page.
Open Source
vertx-lang-groovy-3.4.1.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/io.vertx/vertx-lang-groovy/pom.properties META-INF/maven/io.vertx/vertx-lang-groovy/pom.xml META-INF/services/io.vertx.core.spi.VerticleFactory META-INF/services/io.vertx.docgen.DocGenerator META-INF/services/org.codehaus.groovy.runtime.ExtensionModule META-INF/services/org.codehaus.groovy.transform.ASTTransformation codegen.json io.vertx.groovy.core.CompositeFuture_GroovyExtension.class io.vertx.groovy.core.Context_GroovyExtension.class io.vertx.groovy.core.Future_GroovyExtension.class io.vertx.groovy.core.Future_GroovyStaticExtension.class io.vertx.groovy.core.Vertx_GroovyExtension.class io.vertx.groovy.core.Vertx_GroovyStaticExtension.class io.vertx.groovy.core.WorkerExecutor_GroovyExtension.class io.vertx.groovy.core.buffer.Buffer_GroovyExtension.class io.vertx.groovy.core.cli.CLI_GroovyExtension.class io.vertx.groovy.core.cli.CommandLine_GroovyExtension.class io.vertx.groovy.core.eventbus.EventBus_GroovyExtension.class io.vertx.groovy.core.eventbus.MessageProducer_GroovyExtension.class io.vertx.groovy.core.eventbus.Message_GroovyExtension.class io.vertx.groovy.core.file.FileSystem_GroovyExtension.class io.vertx.groovy.core.http.HttpClient_GroovyExtension.class io.vertx.groovy.core.http.HttpConnection_GroovyExtension.class io.vertx.groovy.core.net.SelfSignedCertificate_GroovyExtension.class io.vertx.groovy.core.shareddata.AsyncMap_GroovyExtension.class io.vertx.groovy.core.shareddata.LocalMap_GroovyExtension.class io.vertx.groovy.core.streams.ReadStream_GroovyExtension.class io.vertx.groovy.core.streams.WriteStream_GroovyExtension.class io.vertx.lang.groovy.GroovyDocGenerator.class io.vertx.lang.groovy.GroovyVerticle.class io.vertx.lang.groovy.GroovyVerticleFactory.class io.vertx.lang.groovy.ScriptVerticle.class io.vertx.lang.groovy.VertxTransformation.class vertx-groovy/template/common.templ vertx-groovy/template/ext-desc.templ vertx-groovy/template/gen-methods.templ vertx-groovy/template/gen-static-methods.templ
vertx-lang-groovy-3.4.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <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>io.vertx</groupId> <artifactId>vertx-parent</artifactId> <version>10</version> </parent> <artifactId>vertx-lang-groovy</artifactId> <version>3.4.1</version> <name>Vert.x Groovy Language Support</name> <properties> <stack.version>3.4.1</stack.version> <asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dependencies</artifactId> <version>${stack.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- What we need at runtime --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.7</version> </dependency> <!-- Not needed at runtime --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codetrans</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <scope>provided</scope> <classifier>sources</classifier> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <scope>provided</scope> <classifier>sources</classifier> </dependency> <dependency> <groupId>org.mvel</groupId> <artifactId>mvel2</artifactId> <version>2.2.8.Final</version> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <classifier>tck-sources</classifier> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-testCompile</id> <configuration> <annotationProcessors> <annotationProcessor>io.vertx.codegen.CodeGenProcessor</annotationProcessor> </annotationProcessors> <compilerArgs> <arg>-Acodegen.output=${project.basedir}/src/test</arg> <arg>-Acodegen.generators=Groovy</arg> </compilerArgs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <additionalClasspathElements> <additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement> <additionalClasspathElement>${project.basedir}/src/main/resources</additionalClasspathElement> </additionalClasspathElements> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <!-- Unpack vertx-core source code to target/sources/vertx-core --> <execution> <id>unpack-vertx-core</id> <phase>generate-sources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeGroupIds>io.vertx</includeGroupIds> <includeArtifactIds>vertx-core</includeArtifactIds> <includeTypes>jar</includeTypes> <includeClassifiers>sources</includeClassifiers> <includes>io/vertx/core/**/*.java,examples/**/*.java</includes> <excludes>**/impl/**/*.java,**/logging/**/*.java</excludes> <outputDirectory>${project.build.directory}/sources/vertx-core</outputDirectory> </configuration> </execution> <!-- Unpack codegen source code to src/test/java --> <execution> <id>unpack-codegen</id> <phase>generate-test-sources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeGroupIds>io.vertx</includeGroupIds> <includeArtifactIds>vertx-codegen</includeArtifactIds> <includeTypes>jar</includeTypes> <includeClassifiers>tck-sources</includeClassifiers> <outputDirectory>${basedir}/src/test/java</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.bsc.maven</groupId> <artifactId>maven-processor-plugin</artifactId> <version>3.1.0</version> <configuration> <systemProperties> <java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format> </systemProperties> </configuration> <executions> <!-- Run the annotation processor on vertx-core and generate the Groovy API --> <execution> <id>generate-api</id> <goals> <goal>process</goal> </goals> <phase>generate-sources</phase> <configuration> <processors> <processor>io.vertx.codegen.CodeGenProcessor</processor> </processors> <optionMap> <codegen.output>${project.basedir}/src/main</codegen.output> <codegen.generators>Groovy</codegen.generators> <docgen.output>${asciidoc.dir}/groovy</docgen.output> </optionMap> <sourceDirectory>${project.build.directory}/sources/vertx-core</sourceDirectory> </configuration> </execution> <!-- We have to run the annotation processor again to process docs --> <execution> <id>docgen-docs</id> <goals> <goal>process</goal> </goals> <phase>prepare-package</phase> <configuration> <processors> <processor>io.vertx.docgen.DocGenProcessor</processor> </processors> <optionMap> <codegen.output>${project.basedir}/src/main</codegen.output> <docgen.output>${asciidoc.dir}/groovy</docgen.output> <maven.groupId>${project.groupId}</maven.groupId> <maven.artifactId>${project.artifactId}</maven.artifactId> <maven.version>${project.version}</maven.version> </optionMap> <sourceDirectory>${project.build.directory}/sources/vertx-core</sourceDirectory> </configuration> </execution> <!-- We have to run the annotation processor again to process docoverride --> <execution> <id>docgen-docoverride</id> <goals> <goal>process</goal> </goals> <phase>prepare-package</phase> <configuration> <processors> <processor>io.vertx.docgen.DocGenProcessor</processor> </processors> <optionMap> <codegen.output>${project.basedir}/src/main</codegen.output> <docgen.output>${asciidoc.dir}/groovy</docgen.output> <maven.groupId>${project.groupId}</maven.groupId> <maven.artifactId>${project.artifactId}</maven.artifactId> <maven.version>${project.version}</maven.version> </optionMap> <sourceDirectory>${project.basedir}/src/main/docoverride</sourceDirectory> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>1.5</version> <executions> <execution> <goals> <goal>addTestSources</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assemble-docs</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/docs.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <!-- Use -Pdocs --> <profile> <id>docs</id> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <executions> <execution> <goals> <goal>process-asciidoc</goal> </goals> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <configuration> <sourcepath>${project.build.directory}/sources/vertx-core/</sourcepath> <reportOutputDirectory>${project.build.directory}/docs</reportOutputDirectory> </configuration> <phase>package</phase> <goals> <goal>javadoc</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-groovy</artifactId> <version>3.4.1</version> </dependency>
If you think the following vertx-lang-groovy-3.4.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download vertx-lang-groovy-3.4.1.jar file