fork download
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://m...content-available-to-author-only...e.org/POM/4.0.0"
  3. xmlns:xsi="http://w...content-available-to-author-only...3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://m...content-available-to-author-only...e.org/POM/4.0.0 https://m...content-available-to-author-only...e.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.3</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.bible</groupId>
  13. <artifactId>demo</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <name>bible</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-devtools</artifactId>
  33. <scope>runtime</scope>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.postgresql</groupId>
  43. <artifactId>postgresql</artifactId>
  44. <version>9.4-1200-jdbc4</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.flywaydb</groupId>
  48. <artifactId>flyway-core</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fasterxml.jackson.datatype</groupId>
  52. <artifactId>jackson-datatype-jsr310</artifactId>
  53. </dependency>
  54.  
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. <version>3.4</version>
  59. </dependency>
  60.  
  61. <!-- Segurança -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-security</artifactId>
  65. </dependency>
  66.  
  67. <dependency>
  68. <groupId>org.springframework.security.oauth</groupId>
  69. <artifactId>spring-security-oauth2</artifactId>
  70. <version>2.5.1.RELEASE</version>
  71. </dependency>
  72.  
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
  76. </dependency>
  77.  
  78. <dependency>
  79. <groupId>org.springframework.security</groupId>
  80. <artifactId>spring-security-jwt</artifactId>
  81. <version>1.1.1.RELEASE</version>
  82. </dependency>
  83. </dependencies>
  84.  
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. <version>3.7.0</version>
  95. <configuration>
  96. <release>17</release>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101.  
  102. </project>
  103.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
<?xml version="1.0" encoding="UTF-8"?>
^
1 error
stdout
Standard output is empty