forked from neo4j-contrib/neo4j-jfr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
57 lines (52 loc) · 1.66 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j.jfr</groupId>
<artifactId>neo4j-jfr</artifactId>
<packaging>pom</packaging>
<version>3.1.2-SNAPSHOT</version>
<modules>
<module>configuration</module>
<module>tracers</module>
<module>cli</module>
</modules>
<properties>
<neo4j.version>${project.version}</neo4j.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<year>${maven.build.timestamp}</year>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<header>license_header.txt</header>
<mapping>
<java>JAVADOC_STYLE</java>
</mapping>
<includes>
<include>**/*.java</include>
</includes>
<properties>
<inceptionYear>${year}</inceptionYear>
</properties>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>