-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
32 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import de.uka.ilkd.key.macros.ProofMacro; | ||
import de.uka.ilkd.key.testgen.macros.TestGenMacro; | ||
|
||
/** | ||
* | ||
* @author Alexander Weigl | ||
* @version 1 (04.04.24) | ||
*/ | ||
module org.key_project.core.testgen { | ||
requires org.key_project.core; | ||
requires org.slf4j; | ||
requires org.key_project.util; | ||
requires org.key_project.ncore; | ||
requires org.jspecify; | ||
exports de.uka.ilkd.key.testgen.smt.testgen; | ||
exports de.uka.ilkd.key.testgen.macros; | ||
exports de.uka.ilkd.key.testgen.smt.counterexample; | ||
exports de.uka.ilkd.key.testgen.settings; | ||
} | ||
module org.key_project.core.testgen{requires org.key_project.core;requires org.slf4j;requires org.key_project.util;requires org.key_project.ncore;requires org.jspecify;exports de.uka.ilkd.key.testgen.smt.testgen;exports de.uka.ilkd.key.testgen.macros;exports de.uka.ilkd.key.testgen.smt.counterexample;exports de.uka.ilkd.key.testgen.settings; | ||
|
||
provides ProofMacro with TestGenMacro;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
import de.uka.ilkd.key.gui.extension.api.KeYGuiExtension; | ||
|
||
/** | ||
* | ||
* @author Alexander Weigl | ||
* @version 1 (31.03.24) | ||
*/ | ||
module keyext.exploration { | ||
requires transitive org.key_project.ui; | ||
requires org.key_project.core; | ||
requires org.jspecify; | ||
requires java.desktop; | ||
requires org.key_project.ncore; | ||
requires org.key_project.util; | ||
requires dockingframes.common; | ||
} | ||
module keyext.exploration{requires transitive org.key_project.ui;requires org.key_project.core;requires org.jspecify;requires java.desktop;requires org.key_project.ncore;requires org.key_project.util;requires dockingframes.common; | ||
|
||
provides KeYGuiExtension with org.key_project.exploration.ExplorationExtension;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import de.uka.ilkd.key.gui.extension.api.KeYGuiExtension; | ||
|
||
/** | ||
* | ||
* @author Alexander Weigl | ||
* @version 1 (31.03.24) | ||
*/ | ||
module keyext.proofmanagement { | ||
requires org.key_project.ui; | ||
requires org.jspecify; | ||
requires java.desktop; | ||
requires org.slf4j; | ||
requires org.key_project.core; | ||
requires org.key_project.util; | ||
requires org.key_project.ncore; | ||
/* not available requires ST4; */ | ||
} | ||
module keyext.proofmanagement{requires org.key_project.ui;requires org.jspecify;requires java.desktop;requires org.slf4j;requires org.key_project.core;requires org.key_project.util;requires org.key_project.ncore; | ||
/* not available requires ST4; */ | ||
|
||
|
||
provides KeYGuiExtension with org.key_project.proofmanagement.ProofManagementExt;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
import de.uka.ilkd.key.gui.extension.api.KeYGuiExtension; | ||
|
||
/** | ||
* | ||
* @author Alexander Weigl | ||
* @version 1 (31.03.24) | ||
*/ | ||
module keyext.slicing { | ||
requires org.key_project.core; | ||
requires org.key_project.ui; | ||
requires java.desktop; | ||
requires org.jspecify; | ||
requires org.slf4j; | ||
requires com.miglayout.core; | ||
requires org.key_project.util; | ||
requires org.key_project.ncore; | ||
requires dockingframes.common; | ||
requires dockingframes.core; | ||
exports org.key_project.slicing; | ||
exports org.key_project.slicing.analysis; | ||
} | ||
module keyext.slicing{requires org.key_project.core;requires org.key_project.ui;requires java.desktop;requires org.jspecify;requires org.slf4j;requires com.miglayout.core;requires org.key_project.util;requires org.key_project.ncore;requires dockingframes.common;requires dockingframes.core;exports org.key_project.slicing;exports org.key_project.slicing.analysis; | ||
|
||
provides KeYGuiExtension with org.key_project.slicing.SlicingExtension;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
import de.uka.ilkd.key.gui.extension.api.KeYGuiExtension; | ||
|
||
/** | ||
* | ||
* @author Alexander Weigl | ||
* @version 1 (31.03.24) | ||
*/ | ||
module keyext.ui.testgen { | ||
requires java.desktop; | ||
requires org.key_project.ui; | ||
requires org.slf4j; | ||
requires org.key_project.core; | ||
requires org.key_project.core.testgen; | ||
requires org.jspecify; | ||
} | ||
module keyext.ui.testgen{requires java.desktop;requires org.key_project.ui;requires org.slf4j;requires org.key_project.core;requires org.key_project.core.testgen;requires org.jspecify; | ||
|
||
provides KeYGuiExtension with de.uka.ilkd.key.gui.testgen.TestgenExtension;} |