1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| <?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>toto.com</groupId>
<artifactId>propertyset_hibernate3</artifactId>
<version>1.1.0</version>
<description>correction d'un problème sur la
persistance des PropertySet</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy
todir="${basedir}/target/classes">
<fileset
dir="${basedir}/src/main/java/">
<include name="**/*.xml"></include>
<exclude name="**/*.java"></exclude>
</fileset>
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.6.ga</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>propertyset</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>propertyset-hibernate</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>osworkflow</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>oscore</artifactId>
<version>2.2.5</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-hibernate</artifactId>
<version>1.2.6</version>
</dependency>
</dependencies>
</project> |
Partager