andi-huber commented on PR #2159:
URL: https://github.com/apache/causeway/pull/2159#issuecomment-1890583907

   There is a dependency clash with
   
   - `jakarta.activation`
   - `jakarta.activation-api`
   
   Both provide the `javax.activation.DataSource`.
   
   Excluding `jakarta.activation` from `spring-boot-starter-mail` in 
`causeway-core-runtimeservices` helps resolve that:
   
   ```xml
   <dependency>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-mail</artifactId>
       <exclusions>
           <exclusion>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-starter-logging</artifactId>
           </exclusion>
           <exclusion>
              <groupId>com.sun.activation</groupId>
              <artifactId>jakarta.activation</artifactId>
           </exclusion>
       </exclusions>
   </dependency>
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@causeway.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to