pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.glassfish.grizzly.bm</groupId>
  5. <artifactId>grizzly-bm</artifactId>
  6. <version>0.1</version>
  7. <packaging>jar</packaging>
  8. <name>grizzly-bm</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. </properties>
  15. <build>
  16. <defaultGoal>install</defaultGoal>
  17. <resources>
  18. <resource>
  19. <directory>src/main/resources</directory>
  20. </resource>
  21. </resources>
  22. <testResources>
  23. <testResource>
  24. <directory>src/test/resources</directory>
  25. </testResource>
  26. </testResources>
  27. <plugins>
  28. <plugin>
  29. <inherited>true</inherited>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.8.0</version>
  33. <configuration>
  34. <debug>false</debug>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-assembly-plugin</artifactId>
  39. <configuration>
  40. <archive>
  41. <manifest>
  42. <mainClass>org.glassfish.grizzly.bm.Server</mainClass>
  43. </manifest>
  44. </archive>
  45. <descriptorRefs>
  46. <descriptorRef>jar-with-dependencies</descriptorRef>
  47. </descriptorRefs>
  48. </configuration>
  49. <executions>
  50. <execution>
  51. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  52. <phase>package</phase> <!-- bind to the packaging phase -->
  53. <goals>
  54. <goal>single</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <dependencies>
  62. <dependency>
  63. <groupId>org.glassfish.grizzly</groupId>
  64. <artifactId>grizzly-http-server</artifactId>
  65. <version>2.4.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fasterxml.jackson.core</groupId>
  69. <artifactId>jackson-databind</artifactId>
  70. <version>2.13.2.1</version>
  71. </dependency>
  72. </dependencies>
  73. </project>