pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>com.techempower</groupId>
  6. <artifactId>servicetalk</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <properties>
  10. <servicetalk.version>0.20.0</servicetalk.version>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.servicetalk</groupId>
  15. <artifactId>servicetalk-serialization-api</artifactId>
  16. <version>${servicetalk.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.servicetalk</groupId>
  20. <artifactId>servicetalk-http-api</artifactId>
  21. <version>${servicetalk.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.servicetalk</groupId>
  25. <artifactId>servicetalk-http-netty</artifactId>
  26. <version>${servicetalk.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.servicetalk</groupId>
  30. <artifactId>servicetalk-concurrent-api</artifactId>
  31. <version>${servicetalk.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.servicetalk</groupId>
  35. <artifactId>servicetalk-data-jackson</artifactId>
  36. <version>${servicetalk.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.servicetalk</groupId>
  40. <artifactId>servicetalk-transport-netty-internal</artifactId>
  41. <version>${servicetalk.version}</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <finalName>servicetalk</finalName>
  46. <plugins>
  47. <plugin>
  48. <inherited>true</inherited>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.8.1</version>
  52. <configuration>
  53. <source>11</source>
  54. <target>11</target>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-assembly-plugin</artifactId>
  59. <configuration>
  60. <archive>
  61. <manifest>
  62. <mainClass>servicetalk.Server</mainClass>
  63. </manifest>
  64. </archive>
  65. <descriptorRefs>
  66. <descriptorRef>jar-with-dependencies</descriptorRef>
  67. </descriptorRefs>
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <id>make-assembly</id>
  72. <phase>package</phase>
  73. <goals>
  74. <goal>single</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>