-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Move narayana-lra extension to the new separated LRA project #44513
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ | |
<!-- See root POM for hibernate-orm.version, hibernate-reactive.version, hibernate-validator.version, | ||
hibernate-search.version, antlr.version, bytebuddy.version, hibernate-commons-annotations.version --> | ||
<narayana.version>7.1.0.Final</narayana.version> | ||
<narayana.version.lra>0.0.9.Final</narayana.version.lra> | ||
<agroal.version>2.5</agroal.version> | ||
<jboss-transaction-spi.version>8.0.0.Final</jboss-transaction-spi.version> | ||
<elasticsearch-opensource-components.version>8.16.0</elasticsearch-opensource-components.version> | ||
|
@@ -4765,12 +4766,12 @@ | |
<version>${microprofile-lra.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>narayana-lra</artifactId> | ||
<version>${narayana.version}</version> | ||
<version>${narayana.version.lra}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>narayana-lra</artifactId> | ||
</exclusion> | ||
Comment on lines
4773
to
4776
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not related to your patch but while we're at it: I think this exclusion can go away. Probably some remnants from when we had the Jakarta artifacts. |
||
<exclusion> | ||
|
@@ -4788,12 +4789,12 @@ | |
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-service-base</artifactId> | ||
<version>${narayana.version}</version> | ||
<version>${narayana.version.lra}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-service-base</artifactId> | ||
</exclusion> | ||
Comment on lines
4796
to
4799
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. |
||
<exclusion> | ||
|
@@ -4808,23 +4809,23 @@ | |
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-proxy-api</artifactId> | ||
<version>${narayana.version}</version> | ||
<version>${narayana.version.lra}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-proxy-api</artifactId> | ||
</exclusion> | ||
Comment on lines
4816
to
4819
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. |
||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-client</artifactId> | ||
<version>${narayana.version}</version> | ||
<version>${narayana.version.lra}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jboss.narayana.rts</groupId> | ||
<groupId>org.jboss.narayana.lra</groupId> | ||
<artifactId>lra-client</artifactId> | ||
</exclusion> | ||
Comment on lines
4827
to
4830
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. |
||
<exclusion> | ||
|
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.
Let's use
narayana-lra.version
instead please.