Biblioteca Java - Blame information for rev 30

Subversion Repositories:
Rev:
Rev Author Line No. Line
30 mihai 1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>com.linkscreens.userprofile</groupId>
4   <artifactId>com.linkscreens.userprofile</artifactId>
5   <version>0.0.1-SNAPSHOT</version>
6 <properties>
7     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8   </properties>
9  
10   <dependencies>
11       <dependency>
12           <groupId>org.glassfish.grizzly</groupId>
13           <artifactId>grizzly-http-server</artifactId>
14           <version>2.2.4</version>
15       </dependency>
16       <dependency>
17           <groupId>org.glassfish.jersey.containers</groupId>
18           <artifactId>jersey-container-grizzly2-http</artifactId>
19           <version>2.0-m02</version>
20       </dependency>
21       <dependency>
22           <groupId>org.glassfish.jersey.media</groupId>
23           <artifactId>jersey-media-json</artifactId>
24           <version>2.0-m02</version>
25       </dependency>
26       <dependency>
27           <groupId>net.vz.mongodb.jackson</groupId>
28           <artifactId>mongo-jackson-mapper</artifactId>
29           <version>1.4.1</version>
30       </dependency>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <version>3.8.1</version>
35       <scope>test</scope>
36     </dependency>
37   </dependencies>
38 </project>