pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.activej</groupId>
  6. <artifactId>activej-server-benchmark</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.apache.maven.plugins</groupId>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <configuration>
  14. <source>8</source>
  15. <target>8</target>
  16. </configuration>
  17. </plugin>
  18. <plugin>
  19. <artifactId>maven-assembly-plugin</artifactId>
  20. <version>3.1.0</version>
  21. <configuration>
  22. <archive>
  23. <manifest>
  24. <mainClass>io.activej.http.benchmark.Main</mainClass>
  25. </manifest>
  26. </archive>
  27. <descriptorRefs>
  28. <descriptorRef>jar-with-dependencies</descriptorRef>
  29. </descriptorRefs>
  30. </configuration>
  31. <executions>
  32. <execution>
  33. <id>make-assembly</id>
  34. <phase>package</phase>
  35. <goals>
  36. <goal>single</goal>
  37. </goals>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>io.activej</groupId>
  46. <artifactId>activej-launchers-http</artifactId>
  47. <version>5.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.dslplatform</groupId>
  51. <artifactId>dsl-json-java8</artifactId>
  52. <version>1.9.8</version>
  53. </dependency>
  54. </dependencies>
  55. </project>