Skip to content
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

Conversation

malaskowski
Copy link
Member

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

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.

I hereby agree to the terms of the Knot.x Contributor License Agreement.

"fsRepo=io.knotx.repository.FilesystemRepositoryConnectorVerticle",
"splitter=io.knotx.knot.splitter.FragmentSplitterVerticle",
"assembler=io.knotx.knot.assembler.FragmentAssemblerVerticle",
"httpRepo=io.knotx.repository.http.HttpRepositoryConnectorVerticle",
Copy link
Member

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",
Copy link
Member

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",
Copy link
Member

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>
Copy link
Member

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>
Copy link
Member

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;
Copy link
Member

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;
Copy link
Member

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;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

io.knotx.core.repository

@malaskowski malaskowski merged commit dea515a into milestone/backpressure-and-configs Mar 22, 2018
@malaskowski malaskowski deleted the feature/extract-knotx-core-as-one-module branch March 22, 2018 22:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants