What is the right Maven dependency for javax.jms.* classes?

后端 未结 9 1520
伪装坚强ぢ
伪装坚强ぢ 2020-12-05 06:52

I need to import javax.jms.* classes. What is the right dependency to include into a Maven project? I\'m trying javax.jms:jms:1.1, but no luck (it\

9条回答
  •  情话喂你
    2020-12-05 07:05

    If you just want the JMS libs, without the rest of javaee, use the following:

    https://mvnrepository.com/artifact/javax.jms/javax.jms-api/2.0.1

    
        javax.jms
        javax.jms-api
        2.0.1
    
    

提交回复
热议问题