-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpom.xml
More file actions
141 lines (129 loc) · 5.18 KB
/
Copy pathpom.xml
File metadata and controls
141 lines (129 loc) · 5.18 KB
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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.demchaav</groupId>
<artifactId>graph-compose-build</artifactId>
<version>1.6.7</version>
<relativePath>../aggregator/pom.xml</relativePath>
</parent>
<artifactId>graph-compose-benchmarks</artifactId>
<name>GraphCompose Benchmarks</name>
<description>
Performance benchmarks, stress tests, and endurance harnesses for
GraphCompose. Lives in a sibling module so foreign comparison
libraries (iText, openHTMLToPDF, JasperReports) and benchmark
tooling do not pollute the main project's test classpath.
</description>
<properties>
<graphcompose.version>${project.version}</graphcompose.version>
<maven.compiler.release>17</maven.compiler.release>
<junit.bom.version>6.1.0</junit.bom.version>
<assertj.version>3.27.7</assertj.version>
<logback.version>1.5.34</logback.version>
<openhtmltopdf.version>1.0.10</openhtmltopdf.version>
<itextpdf.version>5.5.13.3</itextpdf.version>
<jasperreports.version>7.0.7</jasperreports.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- The library under benchmark. -->
<dependency>
<groupId>io.github.demchaav</groupId>
<artifactId>graph-compose</artifactId>
<version>${graphcompose.version}</version>
</dependency>
<!--
graph-compose's test-only fixtures (com.demcha.mock.*) used by
CanonicalBenchmarkSupport for CV / invoice / proposal sample
data. Pulled in via the tests-classifier jar published by
the main module's maven-jar-plugin test-jar execution.
-->
<dependency>
<groupId>io.github.demchaav</groupId>
<artifactId>graph-compose</artifactId>
<version>${graphcompose.version}</version>
<type>test-jar</type>
<classifier>tests</classifier>
</dependency>
<!-- Logging for benchmark runs. -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!--
ComparativeBenchmark renders the same fixture through these
alternative PDF stacks so the report can show a side-by-side
comparison. They are benchmark-only and intentionally NOT
depended on by the main module.
-->
<dependency>
<groupId>com.openhtmltopdf</groupId>
<artifactId>openhtmltopdf-pdfbox</artifactId>
<version>${openhtmltopdf.version}</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>${itextpdf.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${jasperreports.version}</version>
<exclusions>
<exclusion>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Test scope for the two utility @Test classes that ship with the harness. -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.3</version>
</plugin>
</plugins>
</build>
</project>