Honeycomb 1.19.04-RC2
[honeycomb.git] / infra / it / memory-benchmark-scripts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <!-- have to basically duplicate common-scripts, it cannot be used as parent because of jar packaging -->
7
8     <properties>
9         <!-- groovy -->
10         <maven.groovy.version>1.6.2</maven.groovy.version>
11         <groovy.version>2.5.5</groovy.version>
12         <groovy.eclipse.compiler.version>3.3.0-01</groovy.eclipse.compiler.version>
13         <groovy.eclipse.batch.version>2.5.6-02</groovy.eclipse.batch.version>
14     </properties>
15
16     <modelVersion>4.0.0</modelVersion>
17     <groupId>io.fd.honeycomb.it</groupId>
18     <artifactId>benchmark-scripts</artifactId>
19     <version>1.19.04-RC2</version>
20     <name>${project.artifactId}</name>
21     <packaging>jar</packaging>
22
23     <build>
24         <pluginManagement>
25             <plugins>
26                 <plugin>
27                     <groupId>org.apache.maven.plugins</groupId>
28                     <artifactId>maven-site-plugin</artifactId>
29                     <configuration>
30                         <skip>true</skip>
31                         <skipDeploy>true</skipDeploy>
32                     </configuration>
33                 </plugin>
34             </plugins>
35         </pluginManagement>
36         <plugins>
37             <plugin>
38                 <groupId>org.codehaus.groovy</groupId>
39                 <artifactId>groovy-eclipse-compiler</artifactId>
40                 <version>${groovy.eclipse.compiler.version}</version>
41                 <extensions>true</extensions>
42             </plugin>
43             <plugin>
44                 <artifactId>maven-compiler-plugin</artifactId>
45                 <version>3.8.0</version>
46                 <!-- 2.8.0-01 and later require maven-compiler-plugin 3.1 or higher -->
47                 <configuration>
48                     <compilerId>groovy-eclipse-compiler</compilerId>
49                     <source>1.8</source>
50                     <target>1.8</target>
51                 </configuration>
52                 <dependencies>
53                     <dependency>
54                         <groupId>org.codehaus.groovy</groupId>
55                         <artifactId>groovy-eclipse-compiler</artifactId>
56                         <version>${groovy.eclipse.compiler.version}</version>
57                     </dependency>
58                     <!-- for 2.8.0-01 and later you must have an explicit dependency on groovy-eclipse-batch -->
59                     <!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-eclipse-batch -->
60                     <dependency>
61                         <groupId>org.codehaus.groovy</groupId>
62                         <artifactId>groovy-eclipse-batch</artifactId>
63                         <version>${groovy.eclipse.batch.version}</version>
64                     </dependency>
65                 </dependencies>
66             </plugin>
67         </plugins>
68     </build>
69
70     <dependencies>
71         <dependency>
72             <groupId>org.codehaus.groovy</groupId>
73             <artifactId>groovy-all</artifactId>
74             <version>${groovy.version}</version>
75             <type>pom</type>
76         </dependency>
77     </dependencies>
78 </project>