|
@@ -1,17 +1,20 @@
|
|
|
-<model>
|
|
|
+<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<parent>
|
|
|
- <groupId>net.sf.acegisecurity</groupId>
|
|
|
+ <groupId>org.acegisecurity</groupId>
|
|
|
<artifactId>acegi-security-parent</artifactId>
|
|
|
- <version>0.9.0-SNAPSHOT</version>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
<artifactId>acegi-security-domain</artifactId>
|
|
|
<name>Acegi Security System for Spring - Domain Object Support</name>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
- <groupId>net.sf.acegisecurity</groupId>
|
|
|
+ <groupId>org.acegisecurity</groupId>
|
|
|
<artifactId>acegi-security</artifactId>
|
|
|
- <version>0.9.0-SNAPSHOT</version>
|
|
|
+ <version>${project.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.hibernate</groupId>
|
|
@@ -19,9 +22,14 @@
|
|
|
<version>3.0.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>springframework</groupId>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-hibernate</artifactId>
|
|
|
- <version>1.2.3</version>
|
|
|
+ <version>1.2.6</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-beanutils</groupId>
|
|
|
+ <artifactId>commons-beanutils</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
|
@@ -36,4 +44,4 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
-</model>
|
|
|
+</project>
|