What is the recommended way of handling jars not available in mvn central, such as javax.jms

LilianaZ January 8, 2017

I have a project which depends on camel-jms, which in turn depends on javax.jms.jms 1.1 jar. This jar is not available in maven central (AFAIU due to licensing on this jar) so the build fails. The build works locally for me as I manually installed it into the local maven cache, but what is the recommended way of dealing with jars like this in Bitbucket Pipelines environment?

1 answer

1 accepted

0 votes
Answer accepted
ojongerius January 12, 2017

You can pull this particular dependency in by adding the JBoss Maven repository to your POM file:

<repositories>
      <repository>
        <id>repository.jboss.org-public</id>
        <name>JBoss.org Maven repository</name>
        <url>https://repository.jboss.org/nexus/content/groups/public</url>
      </repository>
  </repositories>
LilianaZ January 17, 2017

Thanks, it seems that corporate culture of blocking everything (like adding own repos in poms) has brainswashed me into missing the most obvious, simple solution smile

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events