Changes between Version 2 and Version 3 of addAUTH


Ignore:
Timestamp:
2013-03-11T12:48:26+01:00 (11 years ago)
Author:
antonak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • addAUTH

    v2 v3  
    1  * Add at your molgenis.properties file :
    2    * at import_model_database :       model/auth.xml,\
    3    * and auth_loginclass = org.molgenis.omx.auth.[wiki:DatabaseLogin]
    4  *
     1== Add at your molgenis.properties file : ==
     2   * at import_model_database :       model/auth.xml,\
     3   * and auth_loginclass = org.molgenis.omx.auth.[wiki:DatabaseLogin]
    54
    6 molgenis_ui : 
     5== molgenis_ui : ==
     6<plugin name="!SimpleUserLogin" type="org.molgenis.omx.auth.ui.!SimpleUserLogin" label="Login" />
    77
    8 <plugin name="!SimpleUserLogin" type="org.molgenis.omx.auth.ui.!SimpleUserLogin" label="Login" />
     8A menu will be handy :
    99
    10 A menu will be handy : 
    11 
    12  
    1310{{{
    1411<menu name="Auth" label="Users and permissions">
     
    3330}}}
    3431
    35    * dgrsdg
     32
     33== pom.xml : ==
     34
     35Add the module as artifact in your pom.xml file :
     36
     37{{{
     38<dependency>
     39        <groupId>org.molgenis</groupId>
     40        <artifactId>molgenis-omx-auth</artifactId>
     41        <version>0.0.1-SNAPSHOT</version>
     42        <type>war</type>
     43</dependency>   
     44}}}
     45
     46{{{
     47<dependency>
     48        <groupId>org.molgenis</groupId>
     49        <artifactId>molgenis-omx-auth</artifactId>
     50        <version>0.0.1-SNAPSHOT</version>
     51        <type>jar</type>
     52        <classifier>classes</classifier>
     53</dependency>
     54}}}