Skip to content

Commit

Permalink
Add some more dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
adammurdoch committed Dec 20, 2021
1 parent ab9ff68 commit fbbea20
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions libs/lib1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ plugins {
}

group = "test.libs"

repositories {
mavenCentral()
}

dependencies {
implementation("com.google.guava:guava:31.0.1-jre")
}
6 changes: 6 additions & 0 deletions libs/lib1/src/main/java/Lib1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import com.google.common.collect.ImmutableList;

public class Lib1 {
public Lib1() {
ImmutableList.builder().build();
}

@Override
public String toString() {
return "lib1";
Expand Down
4 changes: 4 additions & 0 deletions util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ plugins {
id("java-library")
}

repositories {
mavenCentral()
}

dependencies {
implementation("test.libs:lib2:1.0")
}

0 comments on commit fbbea20

Please sign in to comment.