Changeset 6964 for extensions/jiwigo


Ignore:
Timestamp:
Sep 19, 2010, 3:36:37 PM (14 years ago)
Author:
mlg
Message:

Tag management :
Add Service and dao for the tags management (adding and listing tags)

Location:
extensions/jiwigo/trunk
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/pom.xml

    r6959 r6964  
    33  <groupId>Jiwigo</groupId>
    44  <artifactId>Jiwigo</artifactId>
    5   <version>0.0.1-SNAPSHOT</version>
     5  <version>0.2</version>
    66 
    77
     
    5050            <version>1.0</version>
    5151        </dependency>   
    52          
    53        
     52        <dependency>
     53            <groupId>junit</groupId>
     54            <artifactId>junit</artifactId>
     55            <version>4.8.1</version>
     56        </dependency>   
    5457  </dependencies>
     58 
     59  <build>
     60<!--    <plugins>-->
     61<!--      <plugin>-->
     62<!--        <groupId>org.apache.maven.plugins</groupId>-->
     63<!--        <artifactId>maven-jar-plugin</artifactId>-->
     64<!--        <configuration>-->
     65<!--          <archive>-->
     66<!--            <manifest>-->
     67<!--              <addClasspath>true</addClasspath>-->
     68<!--              <mainClass>fr.mael.jiwigo.Main</mainClass>-->
     69<!--            </manifest>-->
     70<!--          </archive>-->
     71<!--        </configuration>-->
     72<!--      </plugin>-->
     73<!--    </plugins>-->
     74    <plugins>
     75      <plugin>
     76        <!-- NOTE: We don't need a groupId specification because the group is
     77             org.apache.maven.plugins ...which is assumed by default.
     78         -->
     79        <artifactId>maven-assembly-plugin</artifactId>
     80        <version>2.2-beta-5</version>
     81        <configuration>
     82          <descriptorRefs>
     83            <descriptorRef>jar-with-dependencies</descriptorRef>
     84          </descriptorRefs>
     85          <archive>
     86            <manifest>
     87              <mainClass>fr.mael.jiwigo.Main</mainClass>
     88            </manifest>
     89          </archive>
     90        </configuration>
     91       </plugin>
     92      </plugins>
     93  </build>
    5594</project>
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/transverse/enumeration/MethodsEnum.java

    r6821 r6964  
    3737
    3838    LOGIN("pwg.session.login"), LISTER_CATEGORIES("pwg.categories.getList"), LISTER_IMAGES("pwg.categories.getImages"), GET_INFO(
    39             "pwg.images.getInfo"), AJOUTER_CATEGORIE("pwg.categories.add"), AJOUTER_COMMENTAIRE("pwg.images.addComment");
     39            "pwg.images.getInfo"), AJOUTER_CATEGORIE("pwg.categories.add"), AJOUTER_COMMENTAIRE("pwg.images.addComment"), LISTER_TAGS(
     40            "pwg.tags.getList"), TAGS_ADMIN_LIST("pwg.tags.getAdminList"), ADD_TAG("pwg.tags.add");
    4041
    4142    protected String label;
Note: See TracChangeset for help on using the changeset viewer.