-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go to production #13
Comments
@Ryszard-Trojnacki You've answered one of the questions on my mind, I had been wondering if anyone was using the library in their projects. Any issues come up getting it added to your projects? I'd like to see a published jar as well. Also, it might be nice to see if we can get it working with Jitpack. I attempted to use Jitpack to pull it into an experimental project yesterday and Jitpack had problems building it; I ran out of time before I identified what the issue was. :) |
I'm using RESTEasy Guice for a long time - for few years in several projects. Before I had to stay with RESTEasy 4.7.9. But two things:
var restEasy = injector.getInstance(GuiceResteasyBootstrapServletContextListener.class);
main.addEventListener(restEasy);
main.setInitParameter("resteasy.guice.modules", RestModule.class.getName());
main.addServlet(HttpServletDispatcher.class, "/api/*");
I didn't know that there is this service ( repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation group: 'dev.resteasy.guice', name: 'resteasy-guice', version: '1.0.0.Alpha1'
} I will be happy help. |
Ah interesting! I didn't think to try that as a group. That worked for me, thank you! :) |
@Ryszard-Trojnacki , I'll let @jamezp comment here regarding pushing artifacts for this project in the maven repo. |
I apologize, I must have missed this question for some reason. As @asoldano said, the "dev" part of the package name is stable and it's already been deployed to Maven Central https://repo1.maven.org/maven2/dev/resteasy/guice/resteasy-guice/. The There will be migration steps in order to use this, and renaming the packages is one of them. I've filed #16 to update to README to reflect this. |
Works for me (even better with |
No problem @Ryszard-Trojnacki. Once there is some usage and everyone seems satisfied, I'm happy to do a 1.0.0.Final release as well. |
Hi,
I'm using this library in few my projects for some time (over 3 months) and everythings works fine.
Maybe it is time to go from testing/dev to production?
By production I mean:
dev
toorg.jboss
,The text was updated successfully, but these errors were encountered: