You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.4 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  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"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.jesuspinar</groupId>
  7. <artifactId>booksearch</artifactId>
  8. <version>0.0.2</version>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <configuration>
  15. <source>17</source>
  16. <target>17</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <name>booksearch</name>
  22. <description>Search books from a global book database</description>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. <version>6.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.annotation</groupId>
  31. <artifactId>javax.annotation-api</artifactId>
  32. <version>1.3.2</version>
  33. </dependency>
  34. </dependencies>
  35. <properties>
  36. <maven.compiler.source>17</maven.compiler.source>
  37. <maven.compiler.target>17</maven.compiler.target>
  38. </properties>
  39. </project>