Usage

To use WebJS, you only need :

  • A Servlet 3.0.1 compatible server (Tomcat 7 for example)
  • And to add WebJS as a dependency to your WAR project :
<dependency>
        <groupId>fr.dz.webjs</groupId>
        <artifactId>webjs-core</artifactId>
        <version>1.0-SNAPSHOT</version>
        <exclusions>
                <exclusion>
                        <artifactId>tomcat-el-api</artifactId>
                        <groupId>org.apache.tomcat</groupId>
                </exclusion>
        </exclusions>
</dependency>
<dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.0.1</version>
        <scope>provided</scope>
</dependency>

And then, you just have to start here to code !