pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yaoyicloud.ai.pipeline</groupId>
  6. <artifactId>yyc-fc-api</artifactId>
  7. <packaging>jar</packaging>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>YYC FC API</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.projectlombok</groupId>
  13. <artifactId>lombok</artifactId>
  14. <version>1.18.30</version>
  15. <scope>provided</scope>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>3.8.1</version>
  24. <configuration>
  25. <source>11</source>
  26. <target>11</target>
  27. <annotationProcessorPaths>
  28. <path>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <version>1.18.30</version>
  32. </path>
  33. </annotationProcessorPaths>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>