Skip to content

Commit

Permalink
separate parts into modules
Browse files Browse the repository at this point in the history
  • Loading branch information
IOOI-SqAR committed Jan 1, 2024
1 parent 1dfecfe commit a81b287
Show file tree
Hide file tree
Showing 215 changed files with 46,034 additions and 206 deletions.
11 changes: 11 additions & 0 deletions JTCEMU/JTCEMU.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
19 changes: 19 additions & 0 deletions JTCEMU/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id("java")
}

group = "org.sqar.virtualjtc"
version = "1.0-SNAPSHOT"

repositories {
mavenCentral()
}

dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}

tasks.test {
useJUnitPlatform()
}
6 changes: 6 additions & 0 deletions JTCEMU/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module org.jens_mueller.jtcemu.platform.se {
requires org.jens_mueller;

opens org.jens_mueller.jtcemu.platform.se;
exports org.jens_mueller.jtcemu.platform.se;
}
Loading

0 comments on commit a81b287

Please sign in to comment.