summaryrefslogtreecommitdiffstats
path: root/infra/it/memory-benchmark/pom.xml
blob: c9ad199cb20849fddb1f6fb42c8a6b90fe19207d (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2016 Cisco and/or its affiliates.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at:
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->

<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">
    <!-- Parent set as common script to use all groovy dependency versions, etc-->
    <parent>
        <groupId>io.fd.honeycomb.common</groupId>
        <artifactId>honeycomb-parent</artifactId>
        <version>1.19.04-RC2</version>
        <relativePath>../../../common/honeycomb-parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>io.fd.honeycomb.it</groupId>
    <artifactId>memory-benchmark</artifactId>
    <name>${project.artifactId}</name>
    <!-- Static version, we don't want it to be deployed anyway-->
    <version>1.0.0</version>
    <properties>
        <commons-csv.version>1.6</commons-csv.version>
        <honeycomb.version>1.19.04-RC2</honeycomb.version>
        <maven.groovy.version>1.6.2</maven.groovy.version>
        <groovy.version>2.5.5</groovy.version>
        <groovy.eclipse.compiler.version>3.3.0-01</groovy.eclipse.compiler.version>
        <groovy.eclipse.batch.version>2.5.6-02</groovy.eclipse.batch.version>
    </properties>
    <!-- to be runnable from command line -->
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>io.fd.honeycomb.it</groupId>
            <artifactId>memory-benchmark-api</artifactId>
            <version>${honeycomb.version}</version>
        </dependency>

        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>minimal-distribution</artifactId>
            <version>${honeycomb.version}</version>
        </dependency>

        <dependency>
            <groupId>io.fd.honeycomb.it</groupId>
            <artifactId>management</artifactId>
            <version>${honeycomb.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-csv</artifactId>
            <version>${commons-csv.version}</version>
        </dependency>

        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-all</artifactId>
            <version>${groovy.version}</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>

            <!-- Skip deploy -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>

            <!-- skips test by default but compile them -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.0</version>
                <configuration>
                    <skipTests>true</skipTests>
                    <!-- allow reflection for documentation -->
                    <argLine>--illegal-access=permit</argLine>
                </configuration>
            </plugin>

            <!-- assemble jar with all dependencies and test classes -->
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <descriptor>src/main/assembly/assembly.xml</descriptor>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <!-- generate scripts for benchmarks -->
            <plugin>
                <groupId>org.codehaus.gmavenplus</groupId>
                <artifactId>gmavenplus-plugin</artifactId>
                <executions>
                    <!-- script for on-rest memory benchmark -->
                    <execution>
                        <id>generate-on-rest-benchmark-script</id>
                        <phase>package</phase>
                        <goals>
                            <goal>execute</goal>
                        </goals>
                        <!-- 0 data samples == empty config file, therefore same as honeycomb on rest -->
                        <configuration>
                            <scripts>
                                <script>
                                    <![CDATA[
                                        import io.fd.honeycomb.benchmark.script.MemoryBenchmarkStartupScriptGenerator
                                        MemoryBenchmarkStartupScriptGenerator.generateWithDataScript(project, log, "memory-benchmark-on-rest-out", 0)
                                    ]]>
                                </script>
                            </scripts>
                        </configuration>
                    </execution>
                    <!-- script for memory benchmark with 1000 nodes in config data-->
                    <execution>
                        <id>generate-with-data-1000-benchmark-script</id>
                        <phase>package</phase>
                        <goals>
                            <goal>execute</goal>
                        </goals>
                        <configuration>
                            <scripts>
                                <script>
                                    <![CDATA[
                                        import io.fd.honeycomb.benchmark.script.MemoryBenchmarkStartupScriptGenerator
                                        MemoryBenchmarkStartupScriptGenerator.generateWithDataScript(project, log, "memory-benchmark-with-data-out", 1000)
                                    ]]>
                                </script>
                            </scripts>
                        </configuration>
                    </execution>
                    <!-- script for memory benchmark with 10000 nodes in config data-->
                    <execution>
                        <id>generate-with-data-10000-benchmark-script</id>
                        <phase>package</phase>
                        <goals>
                            <goal>execute</goal>
                        </goals>
                        <configuration>
                            <scripts>
                                <script>
                                    <![CDATA[
                                        import io.fd.honeycomb.benchmark.script.MemoryBenchmarkStartupScriptGenerator
                                        MemoryBenchmarkStartupScriptGenerator.generateWithDataScript(project, log, "memory-benchmark-with-data-out", 10000)
                                    ]]>
                                </script>
                            </scripts>
                        </configuration>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>io.fd.honeycomb.it</groupId>
                        <artifactId>benchmark-scripts</artifactId>
                        <version>1.19.04-RC2</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
</project>