pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.bayou</groupId>
  5. <artifactId>bayou_TFB</artifactId>
  6. <version>0.1</version>
  7. <!-- see https://jitpack.io/ -->
  8. <repositories>
  9. <repository>
  10. <id>jitpack.io</id>
  11. <url>https://jitpack.io</url>
  12. </repository>
  13. </repositories>
  14. <dependencies>
  15. <!-- see https://jitpack.io/ -->
  16. <dependency>
  17. <groupId>com.github.zhong-j-yu</groupId>
  18. <artifactId>bayou</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-databind</artifactId>
  24. <version>2.9.7</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <!-- require Java 8 -->
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <version>3.3</version>
  34. <configuration>
  35. <source>1.8</source>
  36. <target>1.8</target>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <artifactId>maven-assembly-plugin</artifactId>
  41. <configuration>
  42. <archive>
  43. <manifest>
  44. <mainClass>bayou.BayouServer</mainClass>
  45. </manifest>
  46. </archive>
  47. <descriptorRefs>
  48. <descriptorRef>jar-with-dependencies</descriptorRef>
  49. </descriptorRefs>
  50. </configuration>
  51. <executions>
  52. <execution>
  53. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  54. <phase>package</phase> <!-- bind to the packaging phase -->
  55. <goals>
  56. <goal>single</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>