-
1. Re: jbossesb-rosetta.jar in Maven pom.xml
jeff.yuchang Oct 23, 2008 9:55 AM (in response to wili)The jbossesb rosetta.jar hasn't been mavenized in the JBoss public repository yet. I used to install the rosetta.jar into my local maven repository from the JBossESB project distribution if I want to use the maven to do the build.
Thanks
Jeff -
2. Re: jbossesb-rosetta.jar in Maven pom.xml
mbucknam Nov 3, 2008 10:33 AM (in response to wili)is rosetta jar going in the public repos soon?
-
3. Re: jbossesb-rosetta.jar in Maven pom.xml
joshc1107 Jul 26, 2012 5:08 PM (in response to mbucknam)I'd like to see it there as well - this particular holdup makes for a number of inconveniences.
-
4. Re: jbossesb-rosetta.jar in Maven pom.xml
tadayosi Jul 27, 2012 4:15 AM (in response to joshc1107)My prefered workaround is using 'system' scope like this:
[pom.xml]
<dependency>
<groupId>org.jboss.soa.esb</groupId>
<artifactId>rosetta</artifactId>
<version>${jbossesb.version}</version>
<scope>system</scope>
<systemPath>${jbossas.home}/server/default/deployers/esb.deployer/lib/jbossesb-rosetta.jar</systemPath>
</dependency>
Hope this helps.
-
5. Re: jbossesb-rosetta.jar in Maven pom.xml
rjdkolb Oct 2, 2013 6:33 AM (in response to mbucknam)I have created an issue :
[JBESB-3953] Put Rosetta JAR in JBoss Maven repo - JBoss Issue Tracker
-
6. Re: jbossesb-rosetta.jar in Maven pom.xml
tcunning Oct 2, 2013 10:06 AM (in response to rjdkolb)Thanks for adding an issue here, I'll see if I can take care of that - in the meantime as a workaround you can either host it on your own maven repository, or install it locally :
http://maven.apache.org/plugins/maven-install-plugin/examples/specific-local-repo.html
-
7. Re: jbossesb-rosetta.jar in Maven pom.xml
rjdkolb Oct 2, 2013 2:46 PM (in response to tcunning)Thanks Tom