Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the play framework maven repository?

Tags:

Trying to get my code to compile magically using maven dependancies. I can't find the playframework on any 3rd party maven repository.

Can someone help ? I is even deployed anywhere ?

like image 205
Olivier Refalo Avatar asked Nov 09 '10 23:11

Olivier Refalo


People also ask

Where is Maven repository location?

The Maven local repository is located in the /home/. m2 directory, the folder is probably hidden.

How do I view Maven repository?

To browse Maven repositories and to manipulate repository indexes open the Maven Repositories view by selecting Windows, Show View, Other... Once you select Other... Eclipse will display a dialog containing all available views. Select the Maven Repositories view under the Maven folder in the Show View dialog.

What is the default location where your local repository for Maven is stored?

By default, in all systems, the maven local repository location path is . m2/repository under home user.


2 Answers

In typesafe Repo

<repositories>   <repository>     <id>typesafe</id>     <name>typesafe-releases</name>     <url>https://repo.typesafe.com/typesafe/releases</url>   </repository> </repositories> 

The dependency is:

<dependency>   <groupId>play</groupId>   <artifactId>play_2.9.1</artifactId>   <version>2.0.2</version> </dependency> 
like image 178
Marco Avatar answered Sep 18 '22 16:09

Marco


It looks like using Maven with Play! will require some special "Maven module". I'm not sure to understand the difference between the Maven support and the maven module pages though.

Have a look at the following thread for some background:

  • Play Framework with Maven?
  • Maven Module Created
  • Play + Maven issue???
like image 32
Pascal Thivent Avatar answered Sep 22 '22 16:09

Pascal Thivent