-
Notifications
You must be signed in to change notification settings - Fork 18
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
98 changed files
with
150 additions
and
1,852 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
open module org.example.product.app.end.to.end.test { | ||
requires org.example.product.app.mock.api; | ||
requires com.google.common; | ||
requires org.junit.jupiter.api; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// @MainClass("org.example.product.app.Application") | ||
module org.example.product.app { | ||
exports org.example.product.app; | ||
|
||
requires org.example.product.bespin; | ||
requires org.example.product.corellia; | ||
requires org.example.product.kamino; | ||
requires org.example.product.kashyyyk; | ||
requires org.example.product.naboo; | ||
requires org.example.product.tatooine; | ||
|
||
requires jakarta.servlet; | ||
requires org.slf4j; | ||
|
||
requires /*runtime*/ org.slf4j.simple; | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module org.example.product.app.mock.api { | ||
exports org.example.product.app.mock.api; | ||
|
||
requires org.example.product.app; | ||
requires com.google.common; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
open module org.example.product.app.test { | ||
requires org.example.product.app; | ||
requires org.junit.jupiter.api; | ||
} |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module org.example.product.bespin { | ||
exports org.example.product.bespin; | ||
|
||
requires transitive org.example.product.corellia; | ||
|
||
requires org.example.product.coruscant; | ||
requires velocity.engine.core; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
open module org.example.product.bespin.test { | ||
requires org.example.product.corellia.test.fixtures; | ||
requires org.junit.jupiter.api; | ||
|
||
requires /*runtime*/ org.slf4j.simple; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module org.example.product.corellia { | ||
exports org.example.product.corellia; | ||
|
||
requires org.apache.commons.io; | ||
requires org.apache.poi.ooxml; | ||
requires transitive org.apache.poi.poi; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
open module org.example.product.corellia.test { | ||
requires org.example.product.corellia.test.fixtures; | ||
requires org.junit.jupiter.api; | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module org.example.product.corellia.test.fixtures { | ||
exports org.example.product.corellia.fixtures; | ||
|
||
requires transitive org.example.product.corellia; | ||
requires transitive com.google.common; | ||
requires transitive javax.annotations.jsr305; | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module org.example.product.coruscant { | ||
exports org.example.product.coruscant; | ||
|
||
requires transitive com.fasterxml.jackson.annotation; | ||
requires transitive com.fasterxml.jackson.databind; | ||
requires transitive com.google.common; | ||
requires transitive java.inject; | ||
|
||
requires com.fasterxml.jackson.core; | ||
requires com.fasterxml.jackson.datatype.jsr310; | ||
requires jakarta.activation; | ||
requires jakarta.mail; | ||
requires org.slf4j; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
open module org.example.product.coruscant.test { | ||
requires org.example.product.coruscant; | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
|
||
requires /*runtime*/ org.slf4j.simple; | ||
} |
19 changes: 0 additions & 19 deletions
19
gradle/meta-plugins/build-parameters-plugins/build.gradle.kts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...ta-plugins/plugin-analysis-plugins/src/main/kotlin/org.example.plugin-analysis.gradle.kts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.