| 组织ID: |
org.opendaylight.openflowjava |
| 项目ID: |
simple-client |
| 版本: |
0.4 |
| 最后修改时间: |
2019-12-17 17:17:03 |
| 包类型: |
jar |
| 标题: |
Openflow Protocol Simple Client |
| 大小: |
17.21KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.opendaylight.openflowjava</groupId>
<artifactId>simple-client</artifactId>
<version>0.4</version>
</dependency>
|
| Gradle引入代码: |
org.opendaylight.openflowjava:simple-client:0.4
|
| 下载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>
<parent>
<groupId>org.opendaylight.openflowjava</groupId>
<artifactId>openflow-protocol-parent</artifactId>
<version>0.4</version>
</parent>
<artifactId>simple-client</artifactId>
<packaging>bundle</packaging>
<name>Openflow Protocol Simple Client</name>
<scm>
<url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
<tag>openflow-protocol-parent-0.4</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>org.opendaylight.openflowjava.protocol.impl.clients.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>openflow-protocol-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/org.opendaylight.openflowjava/simple-client/pom.properties
META-INF/maven/org.opendaylight.openflowjava/simple-client/pom.xml
org.opendaylight.openflowjava.protocol.impl.clients.ClientEvent.class
org.opendaylight.openflowjava.protocol.impl.clients.ScenarioFactory.class
org.opendaylight.openflowjava.protocol.impl.clients.ScenarioHandler.class
org.opendaylight.openflowjava.protocol.impl.clients.SendEvent.class
org.opendaylight.openflowjava.protocol.impl.clients.SimpleClient.class
org.opendaylight.openflowjava.protocol.impl.clients.SimpleClientFramer.class
org.opendaylight.openflowjava.protocol.impl.clients.SimpleClientHandler.class
org.opendaylight.openflowjava.protocol.impl.clients.SimpleClientInitializer.class
org.opendaylight.openflowjava.protocol.impl.clients.SleepEvent.class
org.opendaylight.openflowjava.protocol.impl.clients.WaitForMessageEvent.class
|
| 依赖Jar: |
openflow-protocol-impl-${project.version}.jar
/${project.groupId}/openflow-protocol-impl/${project.version}
查看openflow-protocol-impl所有版本文件
slf4j-log4j12-${slf4j.version}.jar
/org.slf4j/slf4j-log4j12/${slf4j.version}
查看slf4j-log4j12所有版本文件
|