| 组织ID: |
io.vertx |
| 项目ID: |
vertx-lang-js |
| 版本: |
3.2.0 |
| 最后修改时间: |
2019-05-16 17:51:06 |
| 包类型: |
jar |
| 大小: |
133.56KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-js</artifactId>
<version>3.2.0</version>
</dependency>
|
| Gradle引入代码: |
io.vertx:vertx-lang-js:3.2.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?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">
<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-parent</artifactId>
<version>8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>vertx-lang-js</artifactId>
<version>3.2.0</version>
<properties>
<stack.version>3.2.0</stack.version>
<asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir>
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>
</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>
<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-core</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codetrans</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.2.6.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<classifier>tck</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<classifier>tck-sources</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<classifier>sources</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
</systemPropertyVariables>
<additionalClasspathElements>
<additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
<additionalClasspathElement>${project.basedir}/src/main/resources</additionalClasspathElement>
</additionalClasspathElements>
<environmentVariables>
<NODE_PATH>src/test/npm</NODE_PATH>
</environmentVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>default-clean</id>
<configuration>
<filesets>
<fileset>
<directory>${asciidoc.dir}</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Unpack vertx-core source code to target/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>
<outputDirectory>${project.build.directory}/sources/vertx-core</outputDirectory>
</configuration>
</execution>
<!-- Unpack codegen source code to target/sources/codegen -->
<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>${project.build.directory}/sources/codegen</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>2.2.4</version>
<executions>
<!-- Run the annotation processor on vertx-core and generate the js API -->
<execution>
<id>generate-vertx-core</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
</systemProperties>
<processors>
<processor>io.vertx.codegen.CodeGenProcessor</processor>
</processors>
<optionMap>
<outputDirectory>${project.basedir}/src/main</outputDirectory>
</optionMap>
<sourceDirectory>${project.build.directory}/sources/vertx-core</sourceDirectory>
</configuration>
</execution>
<!-- We have to run the annotation processor again to process doc overrides -->
<execution>
<id>docgen-docs</id>
<goals>
<goal>process</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
</systemProperties>
<processors>
<processor>io.vertx.docgen.DocGenProcessor</processor>
</processors>
<optionMap>
<docgen.output>${asciidoc.dir}/js</docgen.output>
</optionMap>
<sourceDirectory>${project.build.directory}/sources/vertx-core</sourceDirectory>
</configuration>
</execution>
<!-- We have to run the annotation processor again to process doc overrides -->
<execution>
<id>docgen-docoverrides</id>
<goals>
<goal>process</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
</systemProperties>
<processors>
<processor>io.vertx.docgen.DocGenProcessor</processor>
</processors>
<optionMap>
<docgen.output>${asciidoc.dir}/js</docgen.output>
<maven.groupId>${project.groupId}</maven.groupId>
<maven.artifactId>${project.artifactId}</maven.artifactId>
<maven.version>${project.version}</maven.version>
</optionMap>
<sourceDirectory>src/main/docoverride</sourceDirectory>
</configuration>
</execution>
<!-- Run the annotation processor on codegen and generate the js codegen -->
<execution>
<id>generate-codegen</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
</systemProperties>
<processors>
<processor>io.vertx.codegen.CodeGenProcessor</processor>
</processors>
<optionMap>
<outputDirectory>${project.basedir}/src/test</outputDirectory>
</optionMap>
<sourceDirectory>${project.build.directory}/sources/codegen</sourceDirectory>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.phasebash.jsdoc</groupId>
<artifactId>jsdoc3-maven-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>jsdoc3</goal>
</goals>
<configuration>
<recursive>false</recursive>
<directoryRoots>
<directoryRoot>${basedir}/src/main/resources/vertx-js</directoryRoot>
</directoryRoots>
<outputDirectory>${project.build.directory}/docs/jsdoc</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.2</version>
<executions>
<execution>
<goals>
<goal>process-asciidoc</goal>
</goals>
<phase>package</phase>
<configuration>
<sourceDirectory>${asciidoc.dir}</sourceDirectory>
<outputDirectory>${project.build.directory}/docs/vertx-core</outputDirectory>
<backend>html</backend>
<doctype>book</doctype>
<preserveDirectories>true</preserveDirectories>
<relativeBaseDir>true</relativeBaseDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-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>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
codegen.json
foofunc.js
io.vertx.lang.js.ByteConverterMap.class
io.vertx.lang.js.ClasspathFileResolver.class
io.vertx.lang.js.Gen.class
io.vertx.lang.js.JavaArraySetWrapper.class
io.vertx.lang.js.JSDocGenerator.class
io.vertx.lang.js.JSVerticleFactory$1.class
io.vertx.lang.js.JSVerticleFactory$JSVerticle.class
io.vertx.lang.js.JSVerticleFactory.class
io.vertx.lang.js.ListConverterSet.class
io.vertx.lang.js.LongConverterMap.class
io.vertx.lang.js.ShortConverterMap.class
io.vertx.lang.js.ThrowableConverter.class
io.vertx.lang.js.VertxGenConverterList.class
io.vertx.lang.js.VertxGenConverterMap.class
io.vertx.lang.js.VertxGenConverterSet.class
META-INF/services/io.vertx.core.spi.VerticleFactory
META-INF/services/io.vertx.docgen.DocGenerator
vertx-js/async_file.js
vertx-js/async_map.js
vertx-js/buffer.js
vertx-js/cli.js
vertx-js/command_line.js
vertx-js/context.js
vertx-js/counter.js
vertx-js/datagram_packet.js
vertx-js/datagram_socket.js
vertx-js/dns_client.js
vertx-js/event_bus.js
vertx-js/file_props.js
vertx-js/file_system.js
vertx-js/file_system_props.js
vertx-js/future.js
vertx-js/http_client.js
vertx-js/http_client_request.js
vertx-js/http_client_response.js
vertx-js/http_server.js
vertx-js/http_server_file_upload.js
vertx-js/http_server_request.js
vertx-js/http_server_request_stream.js
vertx-js/http_server_response.js
vertx-js/local_map.js
vertx-js/lock.js
vertx-js/measured.js
vertx-js/message.js
vertx-js/message_consumer.js
vertx-js/message_producer.js
vertx-js/multi_map.js
vertx-js/mx_record.js
vertx-js/net_client.js
vertx-js/net_server.js
vertx-js/net_socket.js
vertx-js/net_socket_stream.js
vertx-js/packet_writestream.js
vertx-js/pump.js
vertx-js/read_stream.js
vertx-js/record_parser.js
vertx-js/send_context.js
vertx-js/server_web_socket.js
vertx-js/server_web_socket_stream.js
vertx-js/shared_data.js
vertx-js/socket_address.js
vertx-js/srv_record.js
vertx-js/stream_base.js
vertx-js/template/common.templ
vertx-js/template/js.templ
vertx-js/timeout_stream.js
vertx-js/util/console.js
vertx-js/util/jvm-npm.js
vertx-js/util/utils.js
vertx-js/vertx.js
vertx-js/web_socket.js
vertx-js/web_socket_base.js
vertx-js/web_socket_frame.js
vertx-js/web_socket_stream.js
vertx-js/write_stream.js
META-INF/maven/io.vertx/vertx-lang-js/pom.xml
META-INF/maven/io.vertx/vertx-lang-js/pom.properties
META-INF/INDEX.LIST
|
| 依赖Jar: |
vertx-dependencies-${stack.version}.jar
/io.vertx/vertx-dependencies/${stack.version}
查看vertx-dependencies所有版本文件
|