Guest User

Untitled

a guest
Jan 30th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6.  
  7. <modelVersion>4.0.0</modelVersion>
  8.  
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.1.2.RELEASE</version>
  13. <relativePath />
  14. <!-- lookup parent from repository -->
  15. </parent>
  16.  
  17. <groupId>com.epsilon.bike</groupId>
  18. <artifactId>demo-1</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. <name>demo-1</name>
  21. <description>BIke project for Spring Boot</description>
  22.  
  23. <properties>
  24. <java.version>1.8</java.version>
  25. </properties>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32.  
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-jpa</artifactId>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>org.xerial</groupId>
  40. <artifactId>sqlite-jdbc</artifactId>
  41. <version>3.16.1</version>
  42. <scope>runtime</scope>
  43. </dependency>
  44.  
  45.  
  46. <!-- https://mvnrepository.com/artifact/com.zsoltfabok/sqlite-
  47. dialect -->
  48. <dependency>
  49. <groupId>com.zsoltfabok</groupId>
  50. <artifactId>sqlite-dialect</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53.  
  54.  
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. </dependencies>
  61.  
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>
  71.  
  72.  
  73. application.properties
  74.  
  75.  
  76.  
  77. spring.jpa.database-platform=org.hibernate.dialect.SQLiteDialect
  78. #spring.jpa.ddl-auto=none
  79. spring.jpa.show-sql=true
  80.  
  81. spring.datasource.url=jdbc:sqlite:bike.db
  82. spring.datasource.driver-class-name=org.sqlite.JDBC
  83. #spring.datasource.username=
  84. #spring.datasource.password=
  85.  
  86.  
  87. STACK TRACE
  88. https://pastebin.com/E0ND6WYL
Add Comment
Please, Sign In to add comment