Skip to content

Using Presage2

sammacbeth edited this page Sep 5, 2011 · 1 revision

With Maven

By far the easiest way to use presage is to add it as a dependency to your project with Maven. Once you have a project with a pom.xml file, simply add the following to it:

<repositories>
 	<repository>
 		<id>presage</id>
 		<name>Presage Repository</name>
 		<url>http://ee-sm1106.ee.ic.ac.uk:8080/nexus/content/groups/public/</url>
	</repository>
 </repositories>

Now you can add presage2 modules as follows:

<dependencies>
 	...
 	<dependency>
 		<groupId>uk.ac.imperial.presage2</groupId>
 		<artifactId>presage2-core</artifactId>
 		<version>0.2.4</version>
 		<scope>compile</scope>
 	</dependency>
 	...
</dependencies>`

Note: You currently need to be on the Imperial College intranet to have access to this repository.

Clone this wiki locally