Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<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/maven-v4_0_0.xsd">
3
  <parent>
4
    <artifactId>dnet-hadoop-parent</artifactId>
5
    <groupId>eu.dnetlib</groupId>
6
    <version>1.0.0-SNAPSHOT</version>
7
    <relativePath>pom.xml</relativePath>
8
  </parent>
9
  <modelVersion>4.0.0</modelVersion>
10
  <groupId>eu.dnetlib</groupId>
11
  <artifactId>dnet-openaire-stats</artifactId>
12
  <version>0.0.1-SNAPSHOT</version>
13
  <build>
14
    <plugins>
15
      <plugin>
16
        <groupId>org.codehaus.mojo</groupId>
17
        <artifactId>exec-maven-plugin</artifactId>
18
        <version>1.2.1</version>
19
        <configuration>
20
          <mainClass>eu.dnetlib.data.mapreduce.hbase.statsExport.drivers.SqoopDriver</mainClass>
21
        </configuration>
22
      </plugin>
23
      <plugin>
24
        <artifactId>maven-shade-plugin</artifactId>
25
        <version>2.1</version>
26
        <executions>
27
          <execution>
28
            <phase>package</phase>
29
            <goals>
30
              <goal>shade</goal>
31
            </goals>
32
            <configuration>
33
              <transformers>
34
                <transformer />
35
              </transformers>
36
            </configuration>
37
          </execution>
38
        </executions>
39
      </plugin>
40
    </plugins>
41
  </build>
42
  <repositories>
43
    <repository>
44
      <releases />
45
      <snapshots>
46
        <enabled>false</enabled>
47
      </snapshots>
48
      <id>cloudera</id>
49
      <name>Cloudera Repository</name>
50
      <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
51
    </repository>
52
  </repositories>
53
  <dependencies>
54
    <dependency>
55
      <groupId>jdk.tools</groupId>
56
      <artifactId>jdk.tools</artifactId>
57
      <version>1.7.0_05</version>
58
      <scope>system</scope>
59
      <systemPath>/usr/lib/jvm/java-7-oracle/lib/tools.jar</systemPath>
60
    </dependency>
61
  </dependencies>
62
</project>
63

    
(1-1/3)