Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <parent>
4
    <groupId>eu.dnetlib</groupId>
5
    <artifactId>dnet45-container-parent</artifactId>
6
    <version>1.0.0-SNAPSHOT</version>
7
  </parent>
8
  <modelVersion>4.0.0</modelVersion>
9
  <groupId>eu.dnetlib</groupId>
10
  <artifactId>dnet-login</artifactId>
11
  <packaging>war</packaging>
12
  <version>1.0-SNAPSHOT</version>
13
  <name>dnet-login</name>
14
  <dependencies>
15

    
16
    <dependency>
17
      <groupId>eu.dnetlib</groupId>
18
      <artifactId>uoa-login-core</artifactId>
19
      <version>1.0.2</version>
20
    </dependency>
21

    
22
    <dependency>
23
      <groupId>javax.servlet</groupId>
24
      <artifactId>javax.servlet-api</artifactId>
25
      <version>3.0.1</version>
26
    </dependency>
27

    
28
    <dependency>
29
      <groupId>junit</groupId>
30
      <artifactId>junit</artifactId>
31
      <version>3.8.1</version>
32
      <scope>test</scope>
33
    </dependency>
34

    
35
  </dependencies>
36
  <build>
37
    <finalName>dnet-login</finalName>
38
  </build>
39
</project>
    (1-1/1)