Strabon

view vocab/pom.xml @ 1497:0aadb8a44fc9

[maven-release-plugin] prepare release v3.3.1
author Babis Nikolaou <charnik@di.uoa.gr>
date Wed Mar 11 20:30:33 2015 +0200 (2015-03-11)
parents 7704457b644e
children 8e6437ba6ba2
line source
1 <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 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>eu.earthobservatory</groupId>
7 <artifactId>strabon</artifactId>
8 <version>3.3.1</version>
9 </parent>
11 <artifactId>strabon-vocabulary</artifactId>
13 <name>Strabon: Spatial and Temporal Vocabulary</name>
14 <description>Spatial and Temporal Vocabulary for Strabon</description>
15 <packaging>jar</packaging>
17 <build>
18 <pluginManagement>
19 <plugins>
20 <plugin>
21 <groupId>org.eclipse.m2e</groupId>
22 <artifactId>lifecycle-mapping</artifactId>
23 <version>1.0.0</version>
24 <configuration>
25 <lifecycleMappingMetadata>
26 <pluginExecutions>
27 <pluginExecution>
28 <pluginExecutionFilter>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-dependency-plugin</artifactId>
31 <versionRange>[2.4,)</versionRange>
32 <goals>
33 <goal>copy-dependencies</goal>
34 </goals>
35 </pluginExecutionFilter>
36 <action>
37 <ignore />
38 </action>
39 </pluginExecution>
40 </pluginExecutions>
41 </lifecycleMappingMetadata>
42 </configuration>
43 </plugin>
44 </plugins>
45 </pluginManagement>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <version>2.3.2</version>
52 <configuration>
53 <source>1.6</source>
54 <target>1.6</target>
55 <encoding>utf8</encoding>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-dependency-plugin</artifactId>
61 <version>2.4</version>
62 <executions>
63 <execution>
64 <id>copy-dependencies</id>
65 <phase>package</phase>
66 <goals>
67 <goal>copy-dependencies</goal>
68 </goals>
69 <configuration>
70 <outputDirectory>${project.build.directory}</outputDirectory>
71 <overWriteReleases>false</overWriteReleases>
72 <overWriteSnapshots>false</overWriteSnapshots>
73 <overWriteIfNewer>true</overWriteIfNewer>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-jar-plugin</artifactId>
82 <version>2.4</version>
83 <configuration>
84 <skipIfEmpty>true</skipIfEmpty>
85 </configuration>
86 <executions>
87 <execution>
88 <goals>
89 <goal>test-jar</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 </build>
96 </project>