Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Gemini » Gemini JPA Maven repository
Gemini JPA Maven repository [message #1612165] Wed, 11 February 2015 21:43 Go to next message
Pawel Pogorzelski is currently offline Pawel PogorzelskiFriend
Messages: 40
Registered: July 2009
Member
Guys,
I'm trying to fetch Gemini JPA (either 1.1.0 or 1.2.0.M1) from the following Maven repository:
http://download.eclipse.org/gemini/mvn

with no luck. What releases in terms of maven groupId and artifactIds are there?

Thanks,
Pawel
Re: Gemini JPA Maven repository [message #1612296 is a reply to message #1612165] Wed, 11 February 2015 23:43 Go to previous messageGo to next message
Michael Keith is currently offline Michael KeithFriend
Messages: 243
Registered: July 2009
Senior Member
Hi Pawel,

Yes, you should be able to get the 1.2.1 M1 from there.

Group id: org.eclipse.gemini
Artifact id: org.eclipse.gemini.jpa
version: 1.2.0.M1

Let me know if that doesn't work.

-Mike
Re: Gemini JPA Maven repository [message #1614437 is a reply to message #1612296] Fri, 13 February 2015 08:44 Go to previous messageGo to next message
Pawel Pogorzelski is currently offline Pawel PogorzelskiFriend
Messages: 40
Registered: July 2009
Member
Thanks Michael, it doesn't work though. Tried both - 1.2.0.M1 and 1.2.1.M1.

Pawel
Re: Gemini JPA Maven repository [message #1614458 is a reply to message #1614437] Fri, 13 February 2015 08:58 Go to previous messageGo to next message
Pawel Pogorzelski is currently offline Pawel PogorzelskiFriend
Messages: 40
Registered: July 2009
Member
The only Gemini JPA jar I have has an underscore instead of a dash as a version separator. Is it the same in the maven repo?

Pawel
Re: Gemini JPA Maven repository [message #1619430 is a reply to message #1614458] Mon, 16 February 2015 15:23 Go to previous messageGo to next message
Pawel Pogorzelski is currently offline Pawel PogorzelskiFriend
Messages: 40
Registered: July 2009
Member
Michael,
this is a minimal POM that fails to fetch Gemini JPA. Just run mvn package on it.

Thanks,
Pawel

<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>test_gemini_maven</groupId>
	<artifactId>test_gemini_maven</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<packaging>pom</packaging>

	<repositories>
		<repository>
			<id>gemini</id>
			<url>http://download.eclipse.org/gemini/mvn</url>
		</repository>
	</repositories>

		<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>copy</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>copy</goal>
						</goals>
						<configuration>
							<artifactItems>
								<artifactItem>
									<groupId>org.eclipse.gemini</groupId>
									<artifactId>org.eclipse.gemini.jpa</artifactId>
									<version>1.2.0.M1</version>
									<type>jar</type>
									<overWrite>true</overWrite>
									<outputDirectory>${project.build.directory}/bundles</outputDirectory>
								</artifactItem>
							</artifactItems>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
Re: Gemini JPA Maven repository [message #1620284 is a reply to message #1619430] Tue, 17 February 2015 04:59 Go to previous messageGo to next message
Michael Keith is currently offline Michael KeithFriend
Messages: 243
Registered: July 2009
Senior Member
Hi Pawel,

Sorry, I forgot that the 1.2.0.M1 did not get mavenized or uploaded to the maven repo since that repo was supposed to be only for sanctioned releases. 1.2.0 M1 was only available for zipfile download or from the P2 update site.

The 1.1 release is still available on the Maven site under the groupId org.eclipse. However, it does not support recent versions of EclipseLink so I recommend using the 1.2.0.M1 build.

Thanks,
-Mike
Re: Gemini JPA Maven repository [message #1620799 is a reply to message #1620284] Tue, 17 February 2015 12:42 Go to previous messageGo to next message
Pawel Pogorzelski is currently offline Pawel PogorzelskiFriend
Messages: 40
Registered: July 2009
Member
Thanks Mike. Do you know anything about 1.2.0 release date?

Pawel
Re: Gemini JPA Maven repository [message #1632037 is a reply to message #1620799] Tue, 24 February 2015 04:02 Go to previous message
Michael Keith is currently offline Michael KeithFriend
Messages: 243
Registered: July 2009
Senior Member
Pawel,

No date set for it right now, but will keep you posted.

-Mike
Previous Topic:Gemini Naming 1.0.5.RELEASE is now available
Next Topic:Gemini Web 3.0.0 M01 is now available
Goto Forum:
  


Current Time: Fri Apr 19 02:39:39 GMT 2024

Powered by FUDForum. Page generated in 0.03038 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top