PDA

View Full Version : pom for gemfire



wrmay
Feb 7th, 2012, 04:04 PM
I am trying to use spring-gemfire-1.1.0 with the following pom settings ...


<dependency>
<groupId>org.springframework.data.gemfire</groupId>
<artifactId>spring-gemfire</artifactId>
<version>1.0.1.RELEASE</version>
<type>jar</type>
<scope>compile</scope>
</dependency>

...

<repository>
<id>spring-maven-release</id>
<name>Springframework Maven Repository</name>
<url>http://maven.springframework.org/release</url>
</repository>


and I get

2/7/12 4:41:43 PM EST: Downloaded http://maven.springframework.org/release/com/gemstone/gemfire/gemfire/6.6.1/gemfire-6.6.1.pom
2/7/12 4:41:43 PM EST: Downloaded http://repo1.maven.org/maven2/com/gemstone/gemfire/gemfire/6.6.1/gemfire-6.6.1.pom
2/7/12 4:41:43 PM EST: [WARN] The POM for com.gemstone.gemfire:gemfire:jar:6.6.1 is missing, no dependency information available

when I build and gemfire.jar is not in my local repo.

What is the correct way for me to incorporate gemfire.jar into my build ?

I can always install it into my local repo of course but I am hoping it is published somewhere.

wrmay
Feb 8th, 2012, 06:31 AM
Here:


<repository>
<id>gemfire-repository</id>
<name>Gemfire Repository</name>
<url>http://dist.gemstone.com/maven/release</url>
</repository>

herrin
May 7th, 2012, 01:38 AM
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mirantis</groupId>
<artifactId>cachemod-gemfire</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>Mirantis Cachemod GemFire</name>
<description>Mirantis Cachemod GemFire</description>
<dependencies>
<dependency>
<groupId>com.mirantis</groupId>
<artifactId>cachemod</artifactId>
<version>${pom.version}</version>
</dependency>

<dependency>
<groupId>gemfire</groupId>
<artifactId>gemfire</artifactId>
<version>6.5.1.4</version>
</dependency>