| 组织ID: |
cc.renken |
| 项目ID: |
pipeio |
| 版本: |
0.5.0 |
| 最后修改时间: |
2019-11-30 21:03:21 |
| 包类型: |
jar |
| 标题: |
${project.groupId}:${project.artifactId} |
| 描述: |
A netty.io like library that allows to easily setup network protocols. |
| 相关URL: |
https://gitlab.com/funsheep/pipeio |
| 大小: |
27.62KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>cc.renken</groupId>
<artifactId>pipeio</artifactId>
<version>0.5.0</version>
</dependency>
|
| Gradle引入代码: |
cc.renken:pipeio:0.5.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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>
<groupId>cc.renken</groupId>
<artifactId>pipeio</artifactId>
<version>0.5.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>A netty.io like library that allows to easily setup network protocols.</description>
<url>https://gitlab.com/funsheep/pipeio</url>
<licenses>
<license>
<name>Mozilla Public License Version 2.0</name>
<url>https://www.mozilla.org/media/MPL/2.0/index.txt</url>
</license>
</licenses>
<issueManagement>
<url>https://gitlab.com/funsheep/pipeio/issues</url>
<system>Gitlab</system>
</issueManagement>
<scm>
<connection>scm:git:git://gitlab.com/funsheep/pipeio.git</connection>
<developerConnection>scm:git:https://gitlab.com/funsheep/pipeio.git</developerConnection>
<url>https://gitlab.com/funsheep/pipeio/tree/develop</url>
</scm>
<developers>
<developer>
<name>Hendrik Renken</name>
<email>hendrik@renken.cc</email>
<organization>cc.renken</organization>
<organizationUrl>https://gitlab.com/funsheep/</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.encoding>UTF-8</project.encoding>
<!-- java doc generating is now more strictly. This can cause errors while
building -->
<!-- With the following parameter this strictly checks are turned off.
See the following links -->
<!-- http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html -->
<!-- http://stackoverflow.com/questions/24615547/cant-build-hadoop-2-4-1-with-java8 -->
<additionalparam>-Xdoclint:none</additionalparam>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<java.version>1.8</java.version>
<!-- the property maven.build.timestamp is not expanded by resource filtering -->
<!-- the two following properties represent a workaround -->
<!-- a self defined property providing the build time -->
<!-- see https://issues.apache.org/jira/browse/MRESOURCES-99 -->
<!-- http://stackoverflow.com/questions/802677/adding-the-current-date-with-maven2-filtering -->
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<current.timestamp>${maven.build.timestamp}</current.timestamp>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>[1.7,2.0)</version>
</dependency>
</dependencies>
<build>
<resources>
<!-- the resource VERSION file stores build information -->
<!-- these information are set during the build -->
<!-- the file is created by the spring archetpe ci1413 -->
<resource>
<directory>src/main/templates</directory>
<filtering>true</filtering>
<includes>
<include>VERSION</include>
</includes>
</resource>
<!-- Through adding the resource above the original src/main/resources
needs to be added here -->
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<!-- see goals wiki page for configuration options -->
<noReleaseBuild>true</noReleaseBuild>
<noHotfixBuild>true</noHotfixBuild>
<noFeatureBuild>true</noFeatureBuild>
<noTag>true</noTag>
</configuration>
</plugin>
<plugin>
<groupId>com.github.koraktor</groupId>
<artifactId>mavanagaiata</artifactId>
<version>0.7.2</version>
<configuration>
<!-- Through this property the build doesn't fail if there is no .git
folder -->
<!-- see https://github.com/koraktor/mavanagaiata/pull/22 -->
<!-- https://github.com/koraktor/mavanagaiata/issues/39 -->
<skipNoGit>true</skipNoGit>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>commit</goal>
<goal>branch</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
-->
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
VERSION
cc.renken.pipeio.ITransformer.class
cc.renken.pipeio.impl.Flow.class
cc.renken.pipeio.impl.Scheduler$1.class
cc.renken.pipeio.impl.APipeline.class
cc.renken.pipeio.impl.Pipeline.class
cc.renken.pipeio.impl.Pipeline$StateChangeListener.class
cc.renken.pipeio.impl.SinkHandler.class
cc.renken.pipeio.impl.AHandler.class
cc.renken.pipeio.impl.Scheduler.class
cc.renken.pipeio.impl.TubeHandler.class
cc.renken.pipeio.impl.ExceptionRunnable.class
cc.renken.pipeio.impl.Pipeline$ReceiveListener.class
cc.renken.pipeio.impl.Flow$Flowing.class
cc.renken.pipeio.impl.Scheduler$FutureTask.class
cc.renken.pipeio.impl.Pipeline$1.class
cc.renken.pipeio.impl.Scheduler$SaveRunnable.class
cc.renken.pipeio.IScheduler.class
cc.renken.pipeio.IListener.class
cc.renken.pipeio.IPipeline.class
cc.renken.pipeio.IListener$EventType.class
cc.renken.pipeio.IScheduler$ITask.class
cc.renken.pipeio.IPipeline$State.class
cc.renken.pipeio.IHandler.class
cc.renken.pipeio.IComponent.class
cc.renken.pipeio.ITubeHandler.class
cc.renken.pipeio.ITube.class
cc.renken.pipeio.ISink.class
META-INF/maven/cc.renken/pipeio/pom.xml
META-INF/maven/cc.renken/pipeio/pom.properties
|
| 依赖Jar: |
slf4j-api-[1.7,2.0).jar
/org.slf4j/slf4j-api/[1.7,2.0)
查看slf4j-api所有版本文件
|