All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.cdi.util.Version Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.cdi.util;

/**
 * @author Kevin Pollet  (C) 2011 SERLI
 */
public class Version {
   /**
    * Returns the version of the CDI extension.
    *
    * @return the CDI extension version.
    */
   public static String getVersion() {
      return "[WORKING]";
   }

   /**
    * Main method used to display the extension version.
    */
   public static void main(String[] args) {
      System.out.println();
      System.out.println("Infinispan CDI extension");
      System.out.println("Version: " + getVersion());
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy