pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>com.techempower</groupId>
  5. <artifactId>voovan-bench</artifactId>
  6. <version>0.1</version>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <maven.compiler.source>11</maven.compiler.source>
  10. <maven.compiler.target>11</maven.compiler.target>
  11. <main.class>org.voovan.VoovanTFB</main.class>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.voovan</groupId>
  16. <artifactId>voovan-framework</artifactId>
  17. <version>4.3.2</version>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <inherited>true</inherited>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.8.0</version>
  27. <configuration>
  28. <debug>false</debug>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <artifactId>maven-assembly-plugin</artifactId>
  33. <version>3.1.0</version>
  34. <configuration>
  35. <descriptorRefs>
  36. <descriptorRef>jar-with-dependencies</descriptorRef>
  37. </descriptorRefs>
  38. </configuration>
  39. <executions>
  40. <execution>
  41. <id>make-assembly</id>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>single</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>