Use gradle, like everyone else?

deliverable_10
asdfasdf 6 years ago
parent e997c9d00d
commit 71fe283b9f

@ -8,6 +8,16 @@
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library" exported="">
<library name="javax-json">
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/javax.json-1.1.4.jar!/" />
<root url="jar://$MODULE_DIR$/lib/javax.json-api-1.1.4.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" scope="TEST"> <orderEntry type="module-library" scope="TEST">
<library name="JUnit5.4"> <library name="JUnit5.4">
<CLASSES> <CLASSES>

@ -2,8 +2,10 @@ apply plugin: 'java'
apply plugin: 'checkstyle' apply plugin: 'checkstyle'
dependencies { dependencies {
/*
compile 'javax.json:javax.json-api:1.1.4' compile 'javax.json:javax.json-api:1.1.4'
compile 'org.glassfish:javax.json:1.1.4' compile 'org.glassfish:javax.json:1.1.4'
*/
compile fileTree(include: ['*.jar'], dir:'lib') compile fileTree(include: ['*.jar'], dir:'lib')
testCompile fileTree(include: ['*.jar'], dir:'lib') testCompile fileTree(include: ['*.jar'], dir:'lib')
testImplementation fileTree(include: ['*.jar'], dir:'lib') testImplementation fileTree(include: ['*.jar'], dir:'lib')
@ -16,9 +18,11 @@ checkstyle {
configFile file('checkstyle.xml') configFile file('checkstyle.xml')
} }
/*
repositories { repositories {
mavenCentral() mavenCentral()
} }
*/
sourceSets { sourceSets {
main { main {

@ -22,6 +22,8 @@ public class Tui implements Iface, Wobserver {
public Tui() { public Tui() {
stdin = new BufferedReader(new InputStreamReader(System.in)); stdin = new BufferedReader(new InputStreamReader(System.in));
getMax(); getMax();
WatchList watch = ListOfWatchList.getList().getWatchList(0);
watch.addObs(this);
//XXX Start ui thread //XXX Start ui thread
demo(); demo();
} }

Loading…
Cancel
Save