Project

General

Profile

« Previous | Next » 

Revision 41887

Added by Eri Katsari about 8 years ago

wrong folder for commit

View differences:

modules/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

  
6
    <parent>
7
        <groupId>eu.dnetlib</groupId>
8
        <artifactId>dnet-hadoop-parent</artifactId>
9
        <version>1.0.0</version>
10
        <relativePath></relativePath>
11
    </parent>
12

  
13
    <modelVersion>4.0.0</modelVersion>
14
    <groupId>eu.dnetlib</groupId>
15
    <artifactId>dnet-openaire-usage-stats</artifactId>
16
    <version>0.0.1-SNAPSHOT</version>
17

  
18
    <dependencies>
19

  
20
        <dependency>
21
            <groupId>postgresql</groupId>
22
            <artifactId>postgresql</artifactId>
23
            <version>9.1-901-1.jdbc4</version>
24
            <scope>runtime</scope>
25
        </dependency>
26

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

  
34
        <dependency>
35
            <groupId>com.googlecode.json-simple</groupId>
36
            <artifactId>json-simple</artifactId>
37
            <version>1.1.1</version>
38
        </dependency>
39

  
40
    </dependencies>
41

  
42
    <properties>
43
        <java.version>1.7</java.version>
44
    </properties>
45

  
46

  
47
    <build>
48
        <plugins>
49
            <plugin>
50
                <groupId>org.apache.maven.plugins</groupId>
51
                <artifactId>maven-compiler-plugin</artifactId>
52
                <configuration>
53
                    <source>1.7</source>
54
                    <target>1.7</target>
55
                </configuration>
56
            </plugin>
57
        </plugins>
58
    </build>
59
</project>

Also available in: Unified diff