Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.x: Move webserver/benchmark/jmh to tests/benchmark/jmh #7690

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
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.helidon.webserver.benchmark</groupId>
<artifactId>helidon-webserver-benchmark-project</artifactId>
<groupId>io.helidon.tests.benchmark</groupId>
<artifactId>helidon-tests-benchmark-project</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>

<artifactId>helidon-webserver-benchmark-jmh</artifactId>
<artifactId>helidon-tests-benchmark-jmh</artifactId>
<name>Helidon WebServer Benchmarks JMH</name>

<dependencies>
Expand Down
17 changes: 4 additions & 13 deletions webserver/benchmark/pom.xml → tests/benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,18 @@
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.helidon.webserver</groupId>
<artifactId>helidon-webserver-project</artifactId>
<groupId>io.helidon.tests</groupId>
<artifactId>helidon-tests-project</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>

<groupId>io.helidon.webserver.benchmark</groupId>
<artifactId>helidon-webserver-benchmark-project</artifactId>
<groupId>io.helidon.tests.benchmark</groupId>
<artifactId>helidon-tests-benchmark-project</artifactId>
<name>Helidon WebServer Benchmark Project</name>
<packaging>pom</packaging>

<modules>
<module>jmh</module>
</modules>

<properties>
<helidon.services.skip>true</helidon.services.skip>
<javadoc.skip>true</javadoc.skip>
<checkstyle.skip>true</checkstyle.skip>
<spotbugs.skip>true</spotbugs.skip>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.sources.skip>true</maven.sources.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</project>
1 change: 1 addition & 0 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<module>apps</module>
<module>functional</module>
<module>integration</module>
<module>benchmark</module>
</modules>

<profiles>
Expand Down
1 change: 0 additions & 1 deletion webserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

<modules>
<module>access-log</module>
<module>benchmark</module>
<module>context</module>
<module>cors</module>
<module>graphql</module>
Expand Down