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

    
4
	<modelVersion>4.0.0</modelVersion>
5

    
6
	<parent>
7
		<groupId>eu.dnetlib.dhp</groupId>
8
		<artifactId>dhp-build</artifactId>
9
		<version>1.0.0-SNAPSHOT</version>
10
	</parent>
11

    
12
	<artifactId>dhp-build-properties-maven-plugin</artifactId>
13
	<packaging>maven-plugin</packaging>
14

    
15

    
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.apache.maven</groupId>
19
			<artifactId>maven-plugin-api</artifactId>
20
			<version>2.0</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>org.apache.maven</groupId>
24
			<artifactId>maven-project</artifactId>
25
			<version>2.0</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.kuali.maven.plugins</groupId>
29
			<artifactId>properties-maven-plugin</artifactId>
30
			<version>1.3.2</version>
31
		</dependency>
32
	</dependencies>
33

    
34

    
35
	<build>
36
		<directory>target</directory>
37
		<outputDirectory>target/classes</outputDirectory>
38
		<finalName>${project.artifactId}-${project.version}</finalName>
39
		<testOutputDirectory>target/test-classes</testOutputDirectory>
40
		<plugins>
41
			<plugin>
42
				<groupId>org.apache.maven.plugins</groupId>
43
				<artifactId>maven-compiler-plugin</artifactId>
44
			</plugin>
45
			<plugin>
46
				<groupId>org.apache.maven.plugins</groupId>
47
				<artifactId>maven-source-plugin</artifactId>
48
				<executions>
49
					<execution>
50
						<id>attach-sources</id>
51
						<phase>verify</phase>
52
						<goals>
53
							<goal>jar-no-fork</goal>
54
						</goals>
55
					</execution>
56
				</executions>
57
			</plugin>
58
			<plugin>
59
				<groupId>org.apache.maven.plugins</groupId>
60
				<artifactId>maven-javadoc-plugin</artifactId>
61
				<configuration>
62
					<detectLinks>true</detectLinks>
63
				</configuration>
64
			</plugin>
65
		</plugins>
66
	</build>
67

    
68
</project>
(3-3/3)