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
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>dnet45-parent</artifactId>
6
            <version>1.0.0</version>
7
	</parent>
8

    
9
	<version>0.0.2</version>
10
	<modelVersion>4.0.0</modelVersion>
11
	<artifactId>icm-iis-oozie-maven-plugin</artifactId>
12
	<packaging>maven-plugin</packaging>
13

    
14
	<scm>
15
	  <developerConnection>
16
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/icm-iis-oozie-maven-plugin/tags/icm-iis-oozie-maven-plugin-0.0.2
17
	  </developerConnection>
18
	</scm>
19

    
20
	<properties>
21
	</properties>
22

    
23
	<repositories>                                                                                                                                                                                
24
	    <repository>
25
	      <id>dnet-deps</id>
26
	      <name>dnet-dependencies</name>
27
	      <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
28
	      <layout>default</layout>
29
	    </repository>
30
		<repository>
31
			<id>cloudera</id>
32
			<name>Cloudera Repository</name>
33
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
34
			<releases>
35
				<enabled>true</enabled>
36
			</releases>
37
			<snapshots>
38
				<enabled>false</enabled>
39
			</snapshots>
40
		</repository>
41
	</repositories>
42

    
43
	<dependencies>
44
	<dependency>
45
	      <groupId>org.apache.maven</groupId>
46
	      <artifactId>maven-plugin-api</artifactId>
47
	      <version>2.0</version>
48
	    </dependency>
49
	    <dependency>
50
	      <groupId>org.apache.maven</groupId>
51
	      <artifactId>maven-project</artifactId>
52
	      <version>2.0</version>
53
	    </dependency>
54
	    <dependency>
55
			<groupId>org.apache.oozie</groupId>
56
			<artifactId>oozie-client</artifactId>
57
			<version>${iis.oozie.version}</version>
58
			<exclusions>
59
				<exclusion>
60
					<artifactId>slf4j-simple</artifactId>
61
					<groupId>org.slf4j</groupId>
62
				</exclusion>
63
			</exclusions>
64
		</dependency>
65
	</dependencies>
66
	<build>	
67
	<directory>target</directory>
68
    <outputDirectory>target/classes</outputDirectory>
69
    <finalName>${project.artifactId}-${project.version}</finalName>
70
    <testOutputDirectory>target/test-classes</testOutputDirectory>
71
    <plugins>
72
      <plugin>
73
        <groupId>org.apache.maven.plugins</groupId>
74
        <artifactId>maven-compiler-plugin</artifactId>
75
        <version>2.3.2</version>
76
        <configuration>
77
          <source>1.6</source>
78
          <target>1.6</target>
79
        </configuration>
80
      </plugin>
81
      <plugin>
82
        <groupId>org.apache.maven.plugins</groupId>
83
        <artifactId>maven-source-plugin</artifactId>
84
        <version>2.1.2</version>
85
        <executions>
86
          <execution>
87
            <id>attach-sources</id>
88
            <phase>verify</phase>
89
            <goals>
90
              <goal>jar-no-fork</goal>
91
            </goals>
92
          </execution>
93
        </executions>
94
      </plugin>
95
    </plugins>
96
    <pluginManagement>
97
    	<plugins>
98
    		<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
99
    		<plugin>
100
    			<groupId>org.eclipse.m2e</groupId>
101
    			<artifactId>lifecycle-mapping</artifactId>
102
    			<version>1.0.0</version>
103
    			<configuration>
104
    				<lifecycleMappingMetadata>
105
    					<pluginExecutions>
106
    						<pluginExecution>
107
    							<pluginExecutionFilter>
108
    								<groupId>
109
    									org.apache.maven.plugins
110
    								</groupId>
111
    								<artifactId>
112
    									maven-plugin-plugin
113
    								</artifactId>
114
    								<versionRange>[3.2,)</versionRange>
115
    								<goals>
116
    									<goal>descriptor</goal>
117
    								</goals>
118
    							</pluginExecutionFilter>
119
    							<action>
120
    								<ignore />
121
    							</action>
122
    						</pluginExecution>
123
    					</pluginExecutions>
124
    				</lifecycleMappingMetadata>
125
    			</configuration>
126
    		</plugin>
127
    	</plugins>
128
    </pluginManagement>
129
	</build>
130

    
131
    <distributionManagement>
132
        <repository>
133
        <id>dnet45-bootstrap-release</id>
134
        <url>
135
        http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release
136
        </url>
137
        </repository>
138
    </distributionManagement>
139

    
140
</project>
(2-2/2)