Show
hide
<?xml version="1.0"?><project>
<parent>
<artifactId>spring-parent</artifactId>
<groupId>org.springframework</groupId>
<version>1.2.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-orm</artifactId>
<name>Spring ORM</name>
<version>1.2.6</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>com.oracle.toplink</groupId>
<artifactId>toplink</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>ojb</groupId>
<artifactId>db-ojb</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.jdo</groupId>
<artifactId>jdo</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.ibatis</groupId>
<artifactId>ibatis-sqlmap</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.ibatis</groupId>
<artifactId>ibatis2-sqlmap</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
</dependencies>
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>
|