forked from Hithomelabs/Princeton1
Fixing failed build
This commit is contained in:
parent
7ba2d22e43
commit
f0b577b5f6
1
.idea/gradle.xml
generated
1
.idea/gradle.xml
generated
@ -10,6 +10,7 @@
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/clients" />
|
||||
<option value="$PROJECT_DIR$/module4" />
|
||||
<option value="$PROJECT_DIR$/module5" />
|
||||
</set>
|
||||
</option>
|
||||
</GradleProjectSettings>
|
||||
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@ -1,4 +1,8 @@
|
||||
{
|
||||
"java.compile.nullAnalysis.mode": "automatic",
|
||||
"jdk.java.onSave.organizeImports": true
|
||||
"jdk.java.onSave.organizeImports": true,
|
||||
"java.configuration.updateBuildConfiguration": "interactive",
|
||||
"cSpell.words": [
|
||||
"hithomelabs"
|
||||
]
|
||||
}
|
@ -13,6 +13,7 @@ dependencies {
|
||||
testImplementation platform('org.junit:junit-bom:5.10.0')
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||||
implementation project(':module4')
|
||||
implementation project(':module5')
|
||||
}
|
||||
|
||||
test {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.hithomelabs.clients;
|
||||
package com.hithomelabs.clients.module4;
|
||||
|
||||
import com.hithomelabs.princeton1.module4.ArrayQueue;
|
||||
import com.hithomelabs.princeton1.module4.Queue;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.hithomelabs.clients;
|
||||
package com.hithomelabs.clients.module4;
|
||||
|
||||
import com.hithomelabs.princeton1.module4.ArrayStack;
|
||||
import com.hithomelabs.princeton1.module4.Stack;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.hithomelabs.clients;
|
||||
package com.hithomelabs.clients.module4;
|
||||
|
||||
import com.hithomelabs.princeton1.module4.LinkedQueue;
|
||||
import com.hithomelabs.princeton1.module4.Queue;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.hithomelabs.clients;
|
||||
package com.hithomelabs.clients.module4;
|
||||
|
||||
|
||||
import com.hithomelabs.princeton1.module4.LinkedStack;
|
||||
|
@ -13,4 +13,6 @@ plugins {
|
||||
rootProject.name = 'Pricenton1'
|
||||
include('module4')
|
||||
include 'clients'
|
||||
include 'module5'
|
||||
include 'module5'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user