jason-lang / jason

Jason is a fully-fledged interpreter for an extended version of AgentSpeak, a BDI agent-oriented logic programming language.
http://jason-lang.github.io
GNU Lesser General Public License v3.0
217 stars 67 forks source link

Maven/Gradle Release for Jason 2.6 #84

Closed MikeVezina closed 3 years ago

MikeVezina commented 3 years ago

Hello! I hope you are all doing well and staying safe!

Right now I am using a locally built version of Jason 2.6 for my agents and I was just wondering if there was any way you could publish version 2.6 on Maven? No pressure at all, but it definitely would be greatly appreciated!

Thank you in advance for your help!

Michael

cleberjamaral commented 3 years ago

Hi Michael,

Thanks for this enquire. The following setup can be used on gradle:

repositories { maven { url "https://raw.github.com/jacamo-lang/mvn-repo/master" } } dependencies { compile group: 'org.jason' , name: 'jason' , version: '2.6-SNAPSHOT', changing: true, transitive: false }

For maven, I guess the following setup works.

jacamo-repo jacamo repo https://raw.github.com/jacamo-lang/mvn-repo/master org.jason jason 2.6-SNAPSHOT

HTH

-- Cleber Jorge Amaral

On Sun, Nov 8, 2020 at 8:09 PM Michael Vezina notifications@github.com wrote:

Hello! I hope you are all doing well and staying safe!

Right now I am using a locally built version of Jason 2.6 for my agents and I was just wondering if there was any way you could publish version 2.6 on Maven? No pressure at all, but it definitely would be greatly appreciated!

Thank you in advance for your help!

Michael

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jason-lang/jason/issues/84, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACNACWZQ7VOU2UIVIFG32IDSO4QMJANCNFSM4TOT6V7A .

MikeVezina commented 3 years ago

Awesome! This worked wonderfully. Thank you so much Cleber! (I'm going to close the issue but feel free to re-open the issue in case you want other people to see it).