Skip to content

McFoggy/jee-samples

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 

JEE Samples

This project is a collection of self contained JEE project serving as examples or demo of JEE functionalities.

Samples

CDI

  • JAXRS & Conversation
    demo usage of javax.enterprise.context.Conversation & @ConversationScoped beans inside a JAXRS application
  • Servlet & Conversation
    demo usage of javax.enterprise.context.Conversation & @ConversationScoped beans inside a Servlet based application WebServlet with conversation

Build

Integration tests on embedded server

  • mvn clean install

Integration tests on remote server

  • mvn -Premote clean install

Release

This project uses jgitver-maven-plugin to handle its versioning, check documentation for further details.

Once your are satisfied of the HEAD commit (ie you performed all your tests)

  • git tag -a -m "release X.Y.Z, additional reason" X.Y.Z
  • mvn -Prelease -DskipTests deploy
  • git push --follow-tags origin master

Other JEE Samples