Changeset 12416


Ignore:
Timestamp:
Oct 12, 2011, 6:31:17 PM (13 years ago)
Author:
anthony43
Message:
  • upgrading version to 0.4.0 since there are api changes since 0.3.0
  • removing @override annotation on addSimple (not needed)
  • specifying in the pom the jdk version to use (1.5)
Location:
extensions/jiwigo-ws-api
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo-ws-api/pom.xml

    r10494 r12416  
    33  <groupId>fr.mael.jiwigo</groupId>
    44  <artifactId>jiwigo-ws-api</artifactId>
    5   <version>0.3.0-SNAPSHOT</version>
     5  <version>0.4.0-SNAPSHOT</version>
    66  <dependencies>
    77
     
    5656                </configuration>
    5757                </plugin>
     58                <plugin>
     59                        <groupId>org.apache.maven.plugins</groupId>
     60                        <artifactId>maven-compiler-plugin</artifactId>
     61                        <configuration>
     62                                <source>1.5</source>
     63                                <target>1.5</target>
     64                        </configuration>
     65                </plugin>
    5866        </plugins>
    5967  </build>
  • extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/service/impl/ImageServiceImpl.java

    r10749 r12416  
    167167    }
    168168
    169     @Override
    170169    public void addSimple(File file, Integer category, String title, Integer level) throws JiwigoException {
    171170        dao.addSimple(file, category, title, level);
Note: See TracChangeset for help on using the changeset viewer.