mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-31 03:34:36 +01:00
move forwarding history into separate module
This commit is contained in:
@@ -4,6 +4,7 @@ plugins {
|
||||
|
||||
dependencies {
|
||||
runtimeOnly project(':web')
|
||||
runtimeOnly project(':forwarding-history')
|
||||
runtimeOnly project(':statistics')
|
||||
runtimeOnly 'org.postgresql:postgresql'
|
||||
testRuntimeOnly 'com.h2database:h2'
|
||||
|
||||
11
forwarding-history/build.gradle
Normal file
11
forwarding-history/build.gradle
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
id 'lnd-manageJ.java-library-conventions'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':model')
|
||||
implementation project(':grpc-adapter')
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
testRuntimeOnly 'com.h2database:h2'
|
||||
testFixturesApi testFixtures(project(':model'))
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package de.cotto.lndmanagej;
|
||||
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class SpringBootConfiguration {
|
||||
public SpringBootConfiguration() {
|
||||
// default constructor
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@ rootProject.name = 'lnd-manageJ'
|
||||
include 'application'
|
||||
include 'backend'
|
||||
include 'caching'
|
||||
include 'forwarding-history'
|
||||
include 'grpc-adapter'
|
||||
include 'grpc-client'
|
||||
include 'metrics'
|
||||
|
||||
@@ -5,7 +5,6 @@ plugins {
|
||||
dependencies {
|
||||
implementation project(':backend')
|
||||
implementation project(':model')
|
||||
implementation project(':grpc-adapter')
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
testRuntimeOnly 'com.h2database:h2'
|
||||
testFixturesApi testFixtures(project(':model'))
|
||||
|
||||
Reference in New Issue
Block a user