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

Remove ArtifactDeclaration dependency #1466

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions api-changes.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
{
"1.9.0": {
"revapi": {
"differences": {
"differences": [
// 4.10
// ------------------>>
{
"ignore": true,
"code": "java.class.removed",
"old": "interface org.mule.runtime.api.app.declaration.serialization.ArtifactDeclarationJsonSerializer",
"justification": "ADD YOUR EXPLANATION FOR THE NECESSITY OF THIS CHANGE"
}
// <<------------------
]
}
}
},
"1.7.0": {
"revapi": {
"ignore": [
Expand Down
14 changes: 4 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -228,16 +232,6 @@
<artifactId>allure-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-artifact-declaration</artifactId>
<version>${artifactDeclarationVersion}</version>
</dependency>
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-artifact-declaration-persistence</artifactId>
<version>${artifactDeclarationVersion}</version>
</dependency>
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>api-annotations</artifactId>
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
requires transitive org.mule.runtime.api.annotations;
requires org.mule.runtime.metadata.model.api;
requires org.mule.runtime.metadata.model.message;
requires org.mule.runtime.artifact.declaration;
requires org.mule.runtime.artifact.declaration.persistence;

requires jakarta.activation;
requires java.naming;
Expand All @@ -41,7 +39,6 @@
requires org.apache.commons.lang3;
requires semver4j;

exports org.mule.runtime.api.app.declaration.serialization;
exports org.mule.runtime.api.artifact;
exports org.mule.runtime.api.bulk;
exports org.mule.runtime.api.util.classloader;
Expand Down

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions src/test/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
requires transitive org.mule.runtime.api.annotations;
requires org.mule.runtime.metadata.model.api;
requires org.mule.runtime.metadata.model.message;
requires org.mule.runtime.artifact.declaration;
requires org.mule.runtime.artifact.declaration.persistence;


requires com.github.benmanes.caffeine;
requires com.google.common;
Expand Down
Loading