fork download
  1.  
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <project xmlns="http://m...content-available-to-author-only...e.org/POM/4.0.0"
  4. xmlns:xsi="http://w...content-available-to-author-only...3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://m...content-available-to-author-only...e.org/POM/4.0.0 `http://m...content-available-to-author-only...e.org/xsd/maven-4.0.0.xsd">`
  6. <modelVersion>4.0.0</modelVersion>
  7.  
  8. <groupId>org.engine</groupId>
  9. <artifactId>engine</artifactId>
  10. <version>1.0</version>
  11.  
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.3.0.RELEASE</version>
  16. </parent>
  17.  
  18. <repositories>
  19. <repository>
  20. <id>Central Repository</id>
  21. <url>https://r...content-available-to-author-only...n.org/maven2/</url>
  22. </repository>
  23. <repository>
  24. <id>google-api-services</id>
  25. <url>http://g...content-available-to-author-only...t.com/mavenrepo</url>
  26. </repository>
  27. </repositories>
  28.  
  29. <pluginRepositories>
  30. <pluginRepository>
  31. <id>repository.spring.release</id>
  32. <name>Spring GA Repository</name>
  33. <url>https://r...content-available-to-author-only...g.io/plugins-release/</url>
  34. </pluginRepository>
  35. </pluginRepositories>
  36.  
  37. <properties>
  38. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  39. </properties>
  40.  
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.validation</groupId>
  48. <artifactId>validation-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.security.oauth</groupId>
  52. <artifactId>spring-security-oauth2</artifactId>
  53. <version>2.4.1.RELEASE</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.security.oauth.boot</groupId>
  57. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  58. <version>2.3.0.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-security</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>net.kaczmarzyk</groupId>
  66. <artifactId>specification-arg-resolver</artifactId>
  67. <version>2.2.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mariadb.jdbc</groupId>
  71. <artifactId>mariadb-java-client</artifactId>
  72. <version>2.6.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt</artifactId>
  77. <version>0.9.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-freemarker</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-mail</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-hibernate</artifactId>
  90. <version>1.2.9</version>
  91. </dependency>
  92. <dependency> <!-- Hibernate -->
  93. <groupId>org.hibernate</groupId>
  94. <artifactId>hibernate-core</artifactId>
  95. <version>5.4.16.Final</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.hibernate</groupId>
  99. <artifactId>hibernate-validator</artifactId>
  100. <version>6.1.5.Final</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.springfox</groupId>
  104. <artifactId>springfox-swagger2</artifactId>
  105. <version>2.9.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.springfox</groupId>
  109. <artifactId>springfox-swagger-ui</artifactId>
  110. <version>2.9.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-test</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-webflux</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-data-jpa</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.mapstruct</groupId>
  127. <artifactId>mapstruct</artifactId>
  128. <version>1.3.1.Final</version>
  129. </dependency>
  130. <!-- This dependency is only used for the Topics API sample, which requires the Jackson JSON parser -->
  131. <dependency>
  132. <groupId>com.fasterxml.jackson.core</groupId>
  133. <artifactId>jackson-databind</artifactId>
  134. <version>2.11.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. <version>1.18.12</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.junit</groupId>
  144. <artifactId>junit-bom</artifactId>
  145. <version>5.7.0-M1</version>
  146. <type>pom</type>
  147. </dependency>
  148. </dependencies>
  149.  
  150. <build>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. <version>2.3.0.RELEASE</version>
  156. <executions>
  157. <execution>
  158. <goals>
  159. <goal>repackage</goal>
  160. </goals>
  161. </execution>
  162. </executions>
  163. </plugin>
  164. <plugin>
  165. <groupId>org.apache.maven.plugins</groupId>
  166. <artifactId>maven-surefire-plugin</artifactId>
  167. <version>3.0.0-M4</version>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-compiler-plugin</artifactId>
  172. <version>3.8.1</version>
  173. <configuration>
  174. <source>9</source>
  175. <target>9</target>
  176. <annotationProcessorPaths>
  177. <path>
  178. <groupId>org.mapstruct</groupId>
  179. <artifactId>mapstruct-processor</artifactId>
  180. <version>1.3.1.Final</version>
  181. </path>
  182. <path>
  183. <groupId>org.projectlombok</groupId>
  184. <artifactId>lombok</artifactId>
  185. <version>1.18.12</version>
  186. </path>
  187. </annotationProcessorPaths>
  188. </configuration>
  189. </plugin>
  190. </plugins>
  191. </build>
  192.  
  193. </project>
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:2: error: class, interface, or enum expected
     <?xml version="1.0" encoding="UTF-8"?>
     ^
Main.java:5: error: illegal character: '`'
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 `http://maven.apache.org/xsd/maven-4.0.0.xsd">`
                                                                                                                 ^
2 errors
stdout
Standard output is empty