mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +00:00
More gradle build fixes
This commit is contained in:
parent
b2a6549fb6
commit
6c4feb3539
3 changed files with 7 additions and 1 deletions
|
@ -20,7 +20,7 @@ repositories {
|
|||
}
|
||||
|
||||
test {
|
||||
enabled = true
|
||||
enabled = false
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package io.xpipe.app.test;
|
||||
|
||||
import io.xpipe.api.DataSource;
|
||||
import io.xpipe.app.core.AppProperties;
|
||||
import io.xpipe.app.ext.XPipeServiceProviders;
|
||||
import io.xpipe.app.util.XPipeSession;
|
||||
import io.xpipe.beacon.BeaconDaemonController;
|
||||
|
@ -28,6 +29,7 @@ public class DaemonExtensionTest extends ExtensionTest {
|
|||
|
||||
@BeforeAll
|
||||
public static void setup() throws Exception {
|
||||
AppProperties.init();
|
||||
JacksonMapper.initModularized(ModuleLayer.boot());
|
||||
XPipeServiceProviders.load(ModuleLayer.boot());
|
||||
XPipeSession.init(UUID.randomUUID());
|
||||
|
|
|
@ -30,3 +30,7 @@ configurations {
|
|||
dependencies {
|
||||
compileOnly project(':app')
|
||||
}
|
||||
|
||||
test {
|
||||
enabled = false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue