Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Maven repository
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Jens Haase  
View profile  
 More options Apr 18 2012, 3:18 am
From: Jens Haase <je.ha...@googlemail.com>
Date: Wed, 18 Apr 2012 00:18:06 -0700 (PDT)
Local: Wed, Apr 18 2012 3:18 am
Subject: Maven repository

Hi,

I try to figure out how I can use the UBY-API from Maven. First I thought
it should be available in the Maven Central Repository, but instead I found
it under:

http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/repo

Adding this to my pom, I get the following error:

Access denied to
http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/repo/de/tu....
Error code 401, Unauthorized

I can see the pom file but not the jar. Maybe this is only for internal
usage. Could you please provide the information how to add UBY-API to Maven.

Cheers,
Jens Haase


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tristan Miller  
View profile  
 More options Apr 18 2012, 3:25 am
From: Tristan Miller <mil...@ukp.informatik.tu-darmstadt.de>
Date: Wed, 18 Apr 2012 09:25:00 +0200
Subject: Re: [uby-users] Maven repository

Dear Jens,

On 12-04-18 09:18 AM, Jens Haase wrote:

> Could you please provide the information how to add UBY-API to Maven.

I'm just a lowly user, but here's what I did, using Eclipse with the
appropriate Maven and Subversion plugins:

1) In the SVN Repository Perspective, add the Uby Google Code subversion
repository <http://uby.googlecode.com/svn/de.tudarmstadt.ukp.uby/trunk>

2) Right-click on the folder that appears and select "Check out as Maven
project…"

You'll then get the latest Uby source code checked out and the modules
should become available to select as dependencies in your local POMs.

Regards,
Tristan

--
Tristan Miller, Doctoral Researcher | Tel: +49 6151 16 6166
Ubiquitous Knowledge Processing Lab | Fax: +49 6151 16 5455
Department of Computer Science      | mil...@ukp.informatik.tu-darmstadt.de
Technische Universität Darmstadt    | http://www.ukp.tu-darmstadt.de/

  signature.asc
< 1K Download

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Eckart de Castilho  
View profile  
 More options Apr 18 2012, 3:26 am
From: Richard Eckart de Castilho <richard.eck...@googlemail.com>
Date: Wed, 18 Apr 2012 09:26:37 +0200
Local: Wed, Apr 18 2012 3:26 am
Subject: Re: [uby-users] Maven repository
Hi Jens,

de.tudarmstadt.ukp.uby is an aggregator project. It binds together all the uby modules on the Maven level, but is not itself a JAR. You need to add dependencies to those modules of uby that your require.

To make sure that you always get the same versions for all your uby dependencies, I recommend to add the de.tudarmstadt.ukp.uby artifact to your dependency management section with the type "pom" and the scope "import". If you do that, do not specify any versions on the actual uby modules that you add to your dependencies.

Cheers,

-- Richard

Am 18.04.2012 um 09:18 schrieb Jens Haase:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jens Haase  
View profile  
 More options Apr 18 2012, 3:48 am
From: Jens Haase <je.ha...@googlemail.com>
Date: Wed, 18 Apr 2012 00:48:44 -0700 (PDT)
Local: Wed, Apr 18 2012 3:48 am
Subject: Re: [uby-users] Maven repository

Thanks Richard,

this works for me. Here is what I added to the pom file:

<project>
  ...
  <repositories>
  <repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>ukp-oss</id>
<name>TU Darmstadt UKP</name>
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/repo/</url>
</repository>
  </repositories>
  <dependencies>
        ...
<dependency>
<groupId>de.tudarmstadt.ukp.uby</groupId>
<artifactId>
de.tudarmstadt.ukp.uby.integration.wordnet-gpl
</artifactId>
</dependency>
  </dependencies>
  <dependencyManagement>
  <dependencies>
  <dependency>
  <groupId>de.tudarmstadt.ukp.uby</groupId>
  <artifactId>de.tudarmstadt.ukp.uby</artifactId>
  <version>0.1.0</version>
  <type>pom</type>
  <scope>import</scope>
  </dependency>
  </dependencies>
  </dependencyManagement>
</project>

Cheers,
Jens


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »