pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.quarkus</groupId>
  6. <artifactId>benchmark</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <relativePath>../</relativePath>
  9. </parent>
  10. <groupId>io.quarkus.benchmark</groupId>
  11. <artifactId>base</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.quarkus</groupId>
  15. <artifactId>quarkus-scheduler</artifactId>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.jboss.jandex</groupId>
  22. <artifactId>jandex-maven-plugin</artifactId>
  23. <version>1.0.7</version>
  24. <executions>
  25. <execution>
  26. <id>make-index</id>
  27. <goals>
  28. <goal>jandex</goal>
  29. </goals>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>