pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <parent>
  6. <artifactId>benchmark</artifactId>
  7. <groupId>io.quarkus</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>quarkus-benchmark-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.junit.jupiter</groupId>
  15. <artifactId>junit-jupiter</artifactId>
  16. <scope>test</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.netty</groupId>
  20. <artifactId>netty-common</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <profiles>
  24. <profile>
  25. <id>skip.tests.by.default</id>
  26. <activation>
  27. <activeByDefault>true</activeByDefault>
  28. </activation>
  29. <properties>
  30. <maven.test.skip>true</maven.test.skip>
  31. </properties>
  32. </profile>
  33. </profiles>
  34. </project>