| 组织ID: |
com.hazelcast |
| 项目ID: |
hazelcast-all |
| 版本: |
1.9.2.1 |
| 最后修改时间: |
2019-10-22 23:36:26 |
| 包类型: |
jar |
| 标题: |
hazelcast-all |
| 大小: |
2.28KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-all</artifactId>
<version>1.9.2.1</version>
</dependency>
|
| Gradle引入代码: |
com.hazelcast:hazelcast-all:1.9.2.1
|
| 下载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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-root</artifactId>
<version>1.9.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>hazelcast-all</name>
<artifactId>hazelcast-all</artifactId>
<packaging>jar</packaging>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/maven2/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<property name="jar.name" value="hazelcast-all-${project.parent.version}.jar"/>
<delete file="target/${jar.name}" failonerror="false"/>
<jar jarfile="target/${jar.name}" manifest="src/main/resources/META-INF/MANIFEST.MF">
<fileset dir="../hazelcast/target/classes/"/>
<fileset dir="../hazelcast-client/target/classes/"/>
<fileset dir="../hazelcast-hibernate/target/classes/"/>
<fileset dir="../hazelcast-spring/target/classes/"/>
<manifest>
<attribute name="Built-By" value="Hazelcast.com"/>
<attribute name="Main-Class" value="com.hazelcast.examples.TestApp"/>
</manifest>
</jar>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>deploy</phase>
<configuration>
<tasks>
<copy file="../hazelcast/target/hazelcast-${project.parent.version}-javadoc.jar"
tofile="target/hazelcast-all-${project.parent.version}-javadoc.jar"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-client</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-hibernate</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/com.hazelcast/hazelcast-all/pom.xml
META-INF/maven/com.hazelcast/hazelcast-all/pom.properties
META-INF/INDEX.LIST
|
| 依赖Jar: |
hazelcast-${project.parent.version}.jar
/com.hazelcast/hazelcast/${project.parent.version}
查看hazelcast所有版本文件
hazelcast-client-${project.parent.version}.jar
/com.hazelcast/hazelcast-client/${project.parent.version}
查看hazelcast-client所有版本文件
hazelcast-hibernate-${project.parent.version}.jar
/com.hazelcast/hazelcast-hibernate/${project.parent.version}
查看hazelcast-hibernate所有版本文件
|