Skip to content
This repository was archived by the owner on May 6, 2021. It is now read-only.

Commit f7027db

Browse files
committed
oh
1 parent 6d526bb commit f7027db

10 files changed

Lines changed: 2 additions & 37 deletions

File tree

commandline/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ ext {
77
projectDescription = "Command Line Tools"
88
}
99

10-
dependencies {
11-
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
13-
} else {
14-
api project(":util")
15-
}
16-
}
17-
1810
apply from: "$parent.projectDir/gradle/publishing.gradle"

dreadpool/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ ext {
77
projectDescription = "ThreadPools with interruptible tasks"
88
}
99

10-
dependencies {
11-
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
13-
} else {
14-
api project(":util")
15-
}
16-
}
17-
1810
apply from: "$parent.projectDir/gradle/publishing.gradle"

gradle/global.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ repositories {
6262
dependencies {
6363
if (project.name != 'interfaces') {
6464
if (isAutoDeploy) {
65+
// todo add guardian core dependency
6566
api 'com.github.comroid-git:api:master-SNAPSHOT'
6667
} else {
6768
api project(':api')
69+
api project(":guardian:core")
6870
}
6971
}
7072

listnr/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ ext {
99

1010
dependencies {
1111
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
1312
api project(":spellbind")
1413
} else {
15-
api project(":util")
1614
api project(":common-util:spellbind")
1715
}
1816
}

matrix/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ ext {
99

1010
dependencies {
1111
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
1312
api project(":spellbind")
1413
} else {
15-
api project(":util")
1614
api project(":common-util:spellbind")
1715
}
1816
}

spellbind/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ ext {
77
projectDescription = "Blackmagic Proxies"
88
}
99

10-
dependencies {
11-
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
13-
} else {
14-
api project(":util")
15-
}
16-
}
17-
1810
apply from: "$parent.projectDir/gradle/publishing.gradle"

src/commandline/main/java/org/comroid/commandline/BlockParser.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import org.comroid.mutatio.ref.KeyedReference;
44
import org.comroid.mutatio.ref.Reference;
5-
import org.comroid.trie.TrieMap;
65
import org.jetbrains.annotations.NotNull;
76

87
import java.util.Map;

src/commandline/main/java/org/comroid/commandline/CommandLineArgs.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import org.comroid.mutatio.ref.Reference;
55
import org.comroid.mutatio.ref.ReferenceIndex;
66
import org.comroid.mutatio.ref.ReferenceMap;
7-
import org.comroid.trie.TrieMap;
87

98
import java.util.Map;
109
import java.util.concurrent.ConcurrentHashMap;

src/spellbind/main/java/org/comroid/spellbind/SpellCore.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import org.comroid.common.exception.AssertionException;
55
import org.comroid.spellbind.model.TypeFragment;
66
import org.comroid.spellbind.model.TypeFragmentProvider;
7-
import org.comroid.trie.TrieMap;
87
import org.jetbrains.annotations.ApiStatus.Internal;
98
import org.jetbrains.annotations.Nullable;
109

upd8r/build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ ext {
88
}
99

1010
dependencies {
11-
if (isAutoDeploy) {
12-
api 'com.github.comroid-git:util:master-SNAPSHOT'
13-
} else {
14-
api project(":util")
15-
}
16-
1711
implementation 'com.alibaba:fastjson:1.2.71'
1812
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
1913
}

0 commit comments

Comments
 (0)