Added posgrest dependencies

Code cleanup
This commit is contained in:
Glenn Renfro
2019-04-30 11:01:13 -04:00
parent 447a0752a0
commit e831806b51
4 changed files with 8 additions and 3 deletions

View File

@@ -56,6 +56,10 @@
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -49,8 +49,6 @@ import org.springframework.core.io.Resource;
@EnableTask
@EnableBatchProcessing
public class BillingConfiguration {
private static final Log logger = LogFactory.getLog(BillingConfiguration.class);
@Autowired
public JobBuilderFactory jobBuilderFactory;

View File

@@ -3,7 +3,6 @@ package io.spring.billrun;
import java.util.List;
import io.spring.billrun.model.Bill;
import io.spring.billrun.model.Usage;
import javax.sql.DataSource;
import org.junit.Before;
import org.junit.Test;

View File

@@ -36,6 +36,10 @@
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>