Skip to content

Commit 1448762

Browse files
committed
Move common to io
1 parent 1d3c5df commit 1448762

19 files changed

+11
-11
lines changed

common/build.gradle.kts

Lines changed: 0 additions & 8 deletions
This file was deleted.

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ extra["displayName"] = "Smithy :: Java :: Core"
99
extra["moduleName"] = "software.amazon.smithy.java.core"
1010

1111
dependencies {
12-
api(project(":common"))
12+
api(project(":io"))
1313
api(libs.smithy.model)
1414
}
1515

http-api/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ extra["displayName"] = "Smithy :: Java :: HTTP"
88
extra["moduleName"] = "software.amazon.smithy.java.http-api"
99

1010
dependencies {
11-
api(project(":common"))
11+
api(project(":io"))
1212
}

io/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
plugins {
2+
id("smithy-java.module-conventions")
3+
}
4+
5+
description = "This module provides the common IO functionality for Smithy java"
6+
7+
extra["displayName"] = "Smithy :: Java :: IO"
8+
extra["moduleName"] = "software.amazon.smithy.java.io"

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rootProject.name = "smithy-java"
22

33
include("logging")
44
include(":context")
5-
include(":common")
5+
include(":io")
66
include(":core")
77

88
// Codegen

0 commit comments

Comments
 (0)