| 组织ID: |
io.vertx |
| 项目ID: |
vertx-lang-kotlin-coroutines |
| 版本: |
3.7.0 |
| 最后修改时间: |
2019-04-02 21:09:19 |
| 包类型: |
jar |
| 大小: |
50.52KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-kotlin-coroutines</artifactId>
<version>3.7.0</version>
</dependency>
|
| Gradle引入代码: |
io.vertx:vertx-lang-kotlin-coroutines:3.7.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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>vertx-lang-kotlin-parent</artifactId>
<groupId>io.vertx</groupId>
<version>3.7.0</version>
</parent>
<properties>
<!-- Files are copied there as it contains the examples -->
<asciidoc.dir>${project.build.directory}/asciidoc</asciidoc.dir>
</properties>
<artifactId>vertx-lang-kotlin-coroutines</artifactId>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>${kotlin.coroutines.version}</version>
</dependency>
<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-unit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-rx-java2</artifactId>
<scope>test</scope>
</dependency>
<!-- Needed otherwise there is a FlowableSubscriber CNFE in Kotlin tests -->
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>2.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-rx2</artifactId>
<version>${kotlin.coroutines.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- version needed because of OpenJDK 11 : remove when parent pom is upgraded -->
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>${project.basedir}/src/main/java</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<excludes>
<exclude>examples/**</exclude>
</excludes>
</configuration>
</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>${basedir}/src/main/assembly/docs.xml</descriptor>
</descriptors>
</configuration>
</execution>
<execution>
<id>assemble-javadocs</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>true</attach>
<descriptors>
<descriptor>${basedir}/src/main/assembly/javadocs.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>default-clean</id>
<configuration>
<filesets>
<fileset>
<directory>${project.basedir}/src/main/kotlin</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-asciidoc</id>
<phase>generate-sources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/asciidoc/kotlin</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}/src/main/asciidoc</directory>
</resource>
<resource>
<directory>${project.basedir}/src/main/java/examples</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- Run it to preview docs : mvn asciidoctor:process-asciidoc -->
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<attributes>
<toc>left</toc>
</attributes>
<sourceDirectory>${project.build.directory}/asciidoc</sourceDirectory>
<outputDirectory>${project.build.directory}/html</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
io.vertx.kotlin.coroutines.ChannelReadStream.class
io.vertx.kotlin.coroutines.VertxCoroutineExecutor.class
io.vertx.kotlin.coroutines.ChannelWriteStream$subscribe$2.class
META-INF/INDEX.LIST
io.vertx.kotlin.coroutines.CoroutineVerticle$processArgs$2.class
io.vertx.kotlin.coroutines.CoroutineVerticle$start$1.class
io.vertx.kotlin.coroutines.ChannelReadStream$subscribe$1.class
META-INF/vertx-lang-kotlin-coroutines.kotlin_module
io.vertx.kotlin.coroutines.VertxCoroutineKt$awaitBlocking$2$1.class
io.vertx.kotlin.coroutines.VertxCoroutineExecutor$execute$1.class
io.vertx.kotlin.coroutines.VertxCoroutineKt$await$1.class
io.vertx.kotlin.coroutines.ReceiveChannelHandler$handle$1.class
io.vertx.kotlin.coroutines.VertxCoroutineKt$awaitResult$1.class
io.vertx.kotlin.coroutines.ChannelWriteStream$subscribe$1.class
io.vertx.kotlin.coroutines.CoroutineVerticle$stop$1.class
io.vertx.kotlin.coroutines.ChannelWriteStream.class
META-INF/maven/io.vertx/vertx-lang-kotlin-coroutines/pom.xml
io.vertx.kotlin.coroutines.VertxCoroutineKt$awaitEvent$2$1.class
io.vertx.kotlin.coroutines.CoroutineVerticle.class
io.vertx.kotlin.coroutines.CoroutineVerticle$config$2.class
io.vertx.kotlin.coroutines.ReceiveChannelHandler.class
io.vertx.kotlin.coroutines.VertxCoroutineKt$await$2$1.class
io.vertx.kotlin.coroutines.CoroutineVerticle$coroutineContext$2.class
io.vertx.kotlin.coroutines.CoroutineVerticle$deploymentID$2.class
io.vertx.kotlin.coroutines.ChannelReadStream$subscribe$3.class
META-INF/maven/io.vertx/vertx-lang-kotlin-coroutines/pom.properties
io.vertx.kotlin.coroutines.VertxCoroutineKt.class
io.vertx.kotlin.coroutines.ChannelWriteStream$subscribe$2$1.class
io.vertx.kotlin.coroutines.ChannelReadStream$subscribe$2.class
io.vertx.kotlin.coroutines.VertxScheduledFuture.class
io.vertx.kotlin.coroutines.VertxCoroutineKt$awaitBlocking$2.class
io.vertx.kotlin.coroutines.VertxCoroutineKt$awaitBlocking$2$2.class
io.vertx.kotlin.coroutines.ReceiveChannelHandlerKt.class
io.vertx.kotlin.coroutines.ChannelReadStream$subscribe$3$1.class
|
| 依赖Jar: |
kotlinx-coroutines-core-${kotlin.coroutines.version}.jar
/org.jetbrains.kotlinx/kotlinx-coroutines-core/${kotlin.coroutines.version}
查看kotlinx-coroutines-core所有版本文件
rxjava-2.2.3.jar
/io.reactivex.rxjava2/rxjava/2.2.3
查看rxjava所有版本文件
kotlinx-coroutines-rx2-${kotlin.coroutines.version}.jar
/org.jetbrains.kotlinx/kotlinx-coroutines-rx2/${kotlin.coroutines.version}
查看kotlinx-coroutines-rx2所有版本文件
|