working product

This commit is contained in:
Ben-Epstein 2017-06-30 16:21:25 -05:00
parent 194afd4a5f
commit 241b2cef18
2 changed files with 8 additions and 3 deletions

View file

@ -51,6 +51,11 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency>
<groupId>com.splicemachine</groupId>
<artifactId>splice-hibernate-dialect</artifactId>
<version>2.6.0.1726-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId> <artifactId>spring-boot-starter-thymeleaf</artifactId>
@ -133,7 +138,7 @@
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<!-- Spring Boot Actuator displays build-related information <!-- Spring Boot Actuator displays build-related information
if a META-INF/build-info.properties file is present --> if a META-INF/build-info.properties file is present -->
<goals> <goals>
<goal>build-info</goal> <goal>build-info</goal>
@ -166,7 +171,7 @@
</executions> </executions>
</plugin> </plugin>
<!-- Spring Boot Actuator displays build-related information if a git.properties <!-- Spring Boot Actuator displays build-related information if a git.properties
file is present at the classpath --> file is present at the classpath -->
<plugin> <plugin>
<groupId>pl.project13.maven</groupId> <groupId>pl.project13.maven</groupId>

View file

@ -8,7 +8,7 @@ spring.datasource.url=jdbc:splice://localhost:1527/splicedb;user=splice;password
spring.datasource.username=splice spring.datasource.username=splice
spring.datasource.password=admin spring.datasource.password=admin
spring.datasource.driver-class-name=com.splicemachine.db.jdbc.ClientDriver spring.datasource.driver-class-name=com.splicemachine.db.jdbc.ClientDriver
spring.jpa.database-platform=org.hibernate.dialect.DerbyTenSevenDialect spring.jpa.database-platform=com.splicemachine.SpliceMachineDialect
# Web # Web
spring.thymeleaf.mode=HTML spring.thymeleaf.mode=HTML