1- <?xml version =" 1.0" ?>
2- <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" >
3- <modelVersion >4.0.0</modelVersion >
4- <groupId >org.springframework</groupId >
5- <artifactId >org.springframework.aop</artifactId >
6- <packaging >jar</packaging >
7- <name >Spring Core Abstractions and Utilities</name >
8- <version >3.0.0.M1</version >
9- <repositories >
10- <repository >
11- <id >com.springsource.repository.bundles.external</id >
12- <name >SpringSource Enterprise Bundle Repository - External Bundle Releases</name >
13- <url >http://repository.springsource.com/maven/bundles/external</url >
14- </repository >
15- </repositories >
16- <build >
17- <plugins >
18- <plugin >
19- <groupId >org.apache.maven.plugins</groupId >
20- <artifactId >maven-compiler-plugin</artifactId >
21- <configuration >
22- <source >1.5</source >
23- <target >1.5</target >
24- </configuration >
25- </plugin >
26- </plugins >
27- </build >
28- <dependencies >
29- <dependency >
30- <groupId >commons-logging</groupId >
31- <artifactId >commons-logging</artifactId >
32- <version >1.1.1</version >
33- </dependency >
34- <dependency >
35- <groupId >org.aopalliance</groupId >
36- <artifactId >com.springsource.org.aopalliance</artifactId >
37- <version >1.0.0</version >
38- </dependency >
39- <dependency >
40- <groupId >org.apache.commons</groupId >
41- <artifactId >com.springsource.org.apache.commons.pool</artifactId >
42- <version >1.4.0</version >
43- <optional >true</optional >
44- </dependency >
45- </dependencies >
46- </project >
1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >org.springframework</groupId >
5+ <artifactId >spring-aop</artifactId >
6+ <packaging >jar</packaging >
7+ <version >3.0.0.M3</version >
8+ <parent >
9+ <groupId >org.springframework</groupId >
10+ <artifactId >org.springframework.parent</artifactId >
11+ <relativePath >../build-spring-framework</relativePath >
12+ <version >3.0.0.M3</version >
13+ </parent >
14+
15+ <dependencies >
16+ <dependency >
17+ <groupId >com.jamonapi</groupId >
18+ <artifactId >jamon</artifactId >
19+ <version >2.4</version >
20+ <optional >true</optional >
21+ </dependency >
22+ <dependency >
23+ <groupId >cglib</groupId >
24+ <artifactId >cglib-nodep</artifactId >
25+ <version >2.1_3</version >
26+ <optional >true</optional >
27+ </dependency >
28+ <dependency >
29+ <groupId >aopalliance</groupId >
30+ <artifactId >aopalliance</artifactId >
31+ <version >1.0</version >
32+ <scope >compile</scope >
33+ </dependency >
34+ <dependency >
35+ <groupId >commons-logging</groupId >
36+ <artifactId >commons-logging</artifactId >
37+ <version >1.1.1</version >
38+ <scope >compile</scope >
39+ </dependency >
40+ <dependency >
41+ <groupId >commons-pool</groupId >
42+ <artifactId >commons-pool</artifactId >
43+ <version >1.4</version >
44+ <optional >true</optional >
45+ </dependency >
46+ <dependency >
47+ <groupId >org.aspectj</groupId >
48+ <artifactId >aspectjweaver</artifactId >
49+ <version >1.6.2</version >
50+ <optional >true</optional >
51+ </dependency >
52+ <dependency >
53+ <groupId >org.springframework</groupId >
54+ <artifactId >spring-beans</artifactId >
55+ <version >3.0.0.M3</version >
56+ <scope >compile</scope >
57+ </dependency >
58+ <dependency >
59+ <groupId >org.springframework</groupId >
60+ <artifactId >spring-core</artifactId >
61+ <version >3.0.0.M3</version >
62+ <scope >compile</scope >
63+ </dependency >
64+ <dependency >
65+ <groupId >log4j</groupId >
66+ <artifactId >log4j</artifactId >
67+ <version >1.2.14</version >
68+ <scope >test</scope >
69+ </dependency >
70+ <dependency >
71+ <groupId >org.easymock</groupId >
72+ <artifactId >easymock</artifactId >
73+ <version >2.3</version >
74+ <scope >test</scope >
75+ </dependency >
76+ <dependency >
77+ <groupId >junit</groupId >
78+ <artifactId >junit</artifactId >
79+ <version >4.5</version >
80+ <scope >test</scope >
81+ </dependency >
82+ <dependency >
83+ <groupId >asm</groupId >
84+ <artifactId >asm</artifactId >
85+ <version >2.2.3</version >
86+ <scope >test</scope >
87+ </dependency >
88+ <dependency >
89+ <groupId >asm</groupId >
90+ <artifactId >asm-commons</artifactId >
91+ <version >2.2.3</version >
92+ <scope >test</scope >
93+ </dependency >
94+ </dependencies >
95+ <build >
96+ <pluginManagement >
97+ <plugins >
98+ <plugin >
99+ <groupId >org.apache.maven.plugins</groupId >
100+ <artifactId >maven-surefire-plugin</artifactId >
101+ <configuration >
102+ <junitArtifactName >junit:junit</junitArtifactName >
103+ </configuration >
104+ </plugin >
105+ </plugins >
106+ </pluginManagement >
107+ </build >
108+ </project >
0 commit comments