Skip to content

Commit

Permalink
feat: Move deprecated dependency to optional artifact - Meeds-io/meed…
Browse files Browse the repository at this point in the history
…s#2537 (#52)

This change will move the usage of deprecated javax.transaction Artifact to be deployed only when sso-plugin artifact is added to server which is not used by default in Meeds.
  • Loading branch information
boubaker authored Nov 15, 2024
1 parent 7779177 commit 89a159b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sso-saml-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<properties>
<org.picketlink.federation.version>2.5.5.Final</org.picketlink.federation.version>
<org.picketbox.version>4.0.20.Final</org.picketbox.version>
<javax.transaction.version>1.3</javax.transaction.version>
<org.apache.santuario.version>1.5.1</org.apache.santuario.version>
<org.jboss.security.jbossxacml.version>2.0.8.Final</org.jboss.security.jbossxacml.version>
<org.jboss.security.jbosssx.version>2.0.4</org.jboss.security.jbosssx.version>
Expand Down Expand Up @@ -154,6 +155,12 @@
</exclusion>
</exclusions>
</dependency>
<!-- TODO: Artifacts to move to Jakarta EE -->
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>${javax.transaction.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -214,6 +221,10 @@
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
</dependency>
<!-- JBoss Specs -->
<dependency>
<groupId>org.jboss.spec.javax.resource</groupId>
Expand Down

0 comments on commit 89a159b

Please sign in to comment.