组织ID: |
org.jruby.extras |
项目ID: |
bytelist |
版本: |
1.0.7 |
最后修改时间: |
2019-10-23 03:19:13 |
包类型: |
jar |
标题: |
ByteList |
描述: |
Byte array based container
|
相关URL: |
http://jira.codehaus.org/browse/JRUBY |
大小: |
10.44KB |
|
Maven引入代码: |
<dependency>
<groupId>org.jruby.extras</groupId>
<artifactId>bytelist</artifactId>
<version>1.0.7</version>
</dependency>
|
Gradle引入代码: |
org.jruby.extras:bytelist:1.0.7
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" ?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jruby.extras</groupId>
<artifactId>bytelist</artifactId>
<packaging>jar</packaging>
<version>1.0.7</version>
<name>ByteList</name>
<description>
Byte array based container
</description>
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/JRUBY</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.codehaus.org/jruby</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/jruby</developerConnection>
<url>http://svn.codehaus.org/jruby</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>codehaus-jruby-repository</id>
<name>JRuby Central Repository</name>
<url>dav:https://dav.codehaus.org/repository/jruby</url>
</repository>
<snapshotRepository>
<id>codehaus-jruby-snapshot-repository</id>
<name>JRuby Central Development Repository</name>
<url>dav:https://dav.codehaus.org/snapshots.repository/jruby</url>
</snapshotRepository>
<site>
<id>codehaus-jruby-site</id>
<name>JRuby Maven site</name>
<url>dav:https://dav.codehaus.org/jruby/info</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>codehaus</id>
<name>Codehaus Repository</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>http://repository.codehaus.org</url>
</repository>
</repositories>
<developers>
</developers>
<dependencies>
<dependency>
<groupId>org.jruby.jcodings</groupId>
<artifactId>jcodings</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.jruby.util.ByteList.class
META-INF/maven/org.jruby.extras/bytelist/pom.xml
META-INF/maven/org.jruby.extras/bytelist/pom.properties
|
依赖Jar: |
jcodings-1.0.4.jar
/org.jruby.jcodings/jcodings/1.0.4
查看jcodings所有版本文件
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|