-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract knotx core into a single module #399
Extract knotx core into a single module #399
Conversation
…t-knotx-core-as-one-module
"fsRepo=io.knotx.repository.FilesystemRepositoryConnectorVerticle", | ||
"splitter=io.knotx.knot.splitter.FragmentSplitterVerticle", | ||
"assembler=io.knotx.knot.assembler.FragmentAssemblerVerticle", | ||
"httpRepo=io.knotx.repository.http.HttpRepositoryConnectorVerticle", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
io.knotx.core.repository....
"assembler=io.knotx.knot.assembler.FragmentAssemblerVerticle", | ||
"httpRepo=io.knotx.repository.http.HttpRepositoryConnectorVerticle", | ||
"fsRepo=io.knotx.repository.fs.FilesystemRepositoryConnectorVerticle", | ||
"splitter=io.knotx.splitter.FragmentSplitterVerticle", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
io.knotx.core.splitter
"httpRepo=io.knotx.repository.http.HttpRepositoryConnectorVerticle", | ||
"fsRepo=io.knotx.repository.fs.FilesystemRepositoryConnectorVerticle", | ||
"splitter=io.knotx.splitter.FragmentSplitterVerticle", | ||
"assembler=io.knotx.assembler.FragmentAssemblerVerticle", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
io.knotx.core.assembler
@@ -63,7 +63,8 @@ | |||
</dependency> | |||
<dependency> | |||
<groupId>io.knotx</groupId> | |||
<artifactId>knotx-junit</artifactId> | |||
<artifactId>knotx-core</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add the comment that this dependency is temporary.
@@ -68,7 +68,8 @@ | |||
</dependency> | |||
<dependency> | |||
<groupId>io.knotx</groupId> | |||
<artifactId>knotx-junit</artifactId> | |||
<artifactId>knotx-core</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same.
@@ -13,13 +13,12 @@ | |||
* See the License for the specific language governing permissions and | |||
* limitations under the License. | |||
*/ | |||
package io.knotx.knot.assembler.impl; | |||
package io.knotx.assembler; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we set package name to io.knotx.core.assembler
?
@@ -13,7 +13,7 @@ | |||
* See the License for the specific language governing permissions and | |||
* limitations under the License. | |||
*/ | |||
package io.knotx.gateway.impl; | |||
package io.knotx.gateway; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
io.knotx.core.gateway
@@ -13,12 +13,11 @@ | |||
* See the License for the specific language governing permissions and | |||
* limitations under the License. | |||
*/ | |||
package io.knotx.repository.impl; | |||
package io.knotx.repository.fs; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
io.knotx.core.repository
Description
Knot.x is fully extensible tool. However there are parts that are the core of Knot.x This pull request identifies those modules and merges them into a single knotx-core module.
Motivation and Context
The idea here is to have one
knotx-core
module that will be the very base of Knot.x. In the future it will be the heart of the whole system. This change will enable easier maintenance and more clear approach to Knot.x extendability.Types of changes
Checklist:
I hereby agree to the terms of the Knot.x Contributor License Agreement.