Added posgrest dependencies
Code cleanup
This commit is contained in:
@@ -56,6 +56,10 @@
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user