source: Dev/branches/play-2.0.1/documentation/manual/hacking/Repositories.md @ 322

Last change on this file since 322 was 322, checked in by hendrikvanantwerpen, 13 years ago

Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.

File size: 739 bytes
Line 
1# Artifact repositories
2
3## Typesafe repository
4
5All Play artifacts are published to the Typesafe repository at [[http://repo.typesafe.com/typesafe/releases/]].
6
7> **Note:** it's a Maven2 compatible repository.
8
9To enable it in your sbt build, you must add a proper resolver (typically in `plugins.sbt`):
10
11```
12// The Typesafe repository
13resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
14```
15
16## Accessing snapshots
17
18Snapshots are published daily from our [[Continuous Server|CIServer]] to the Typesafe snapshots repository at [[http://repo.typesafe.com/typesafe/snapshots/]].
19
20```
21// The Typesafe snapshots repository
22resolvers += "Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/"
23```
24
Note: See TracBrowser for help on using the repository browser.