X Tutup
Skip to content

Commit fe29a71

Browse files
committed
Updated projects and ivy.xmls
1 parent b313de0 commit fe29a71

File tree

17 files changed

+207
-177
lines changed

17 files changed

+207
-177
lines changed

org.springframework.aop/aop.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@
101101
</orderEntry>
102102
<orderEntry type="module" module-name="beans" />
103103
<orderEntry type="module" module-name="core" />
104-
<orderEntryProperties />
105104
</component>
106105
<component name="copyright">
107106
<Base>

org.springframework.beans/beans.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
</SOURCES>
9090
</library>
9191
</orderEntry>
92-
<orderEntryProperties />
9392
</component>
9493
<component name="copyright">
9594
<Base>

org.springframework.context.support/context-support.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@
159159
</SOURCES>
160160
</library>
161161
</orderEntry>
162-
<orderEntryProperties />
163162
</component>
164163
<component name="copyright">
165164
<Base>

org.springframework.context/context.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@
183183
</SOURCES>
184184
</library>
185185
</orderEntry>
186-
<orderEntryProperties />
187186
</component>
188187
<component name="copyright">
189188
<Base>

org.springframework.core/core.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@
108108
<SOURCES />
109109
</library>
110110
</orderEntry>
111-
<orderEntryProperties />
112111
</component>
113112
<component name="copyright">
114113
<Base>
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module relativePaths="true" type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
7+
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="false" />
9+
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" isTestSource="false" />
10+
</content>
11+
<orderEntry type="sourceFolder" forTests="false" />
12+
<orderEntry type="inheritedJdk" />
13+
<orderEntry type="module-library">
14+
<library>
15+
<CLASSES>
16+
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-1.1.1.jar!/" />
17+
</CLASSES>
18+
<JAVADOC />
19+
<SOURCES>
20+
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-sources-1.1.1.jar!/" />
21+
</SOURCES>
22+
</library>
23+
</orderEntry>
24+
<orderEntry type="module-library">
25+
<library>
26+
<CLASSES>
27+
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.org.junit/4.4.0/com.springsource.org.junit-4.4.0.jar!/" />
28+
</CLASSES>
29+
<JAVADOC />
30+
<SOURCES>
31+
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.junit/3.8.2/com.springsource.junit-sources-3.8.2.jar!/" />
32+
</SOURCES>
33+
</library>
34+
</orderEntry>
35+
<orderEntry type="module-library">
36+
<library>
37+
<CLASSES>
38+
<root url="jar://$IVY_CACHE$/org.antlr/com.springsource.org.antlr/3.0.1/com.springsource.org.antlr-3.0.1.jar!/" />
39+
</CLASSES>
40+
<JAVADOC />
41+
<SOURCES>
42+
<root url="jar://$IVY_CACHE$/org.antlr/com.springsource.org.antlr/3.0.1/com.springsource.org.antlr-sources-3.0.1.jar!/" />
43+
</SOURCES>
44+
</library>
45+
</orderEntry>
46+
</component>
47+
</module>
48+
Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
<?xml version="1.0"?>
22
<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+
<parent>
4+
<groupId>org.springframework</groupId>
5+
<artifactId>org.springframework.parent</artifactId>
6+
<version>3.0-M1-SNAPSHOT</version>
7+
</parent>
38
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.springframework</groupId>
59
<artifactId>org.springframework.expression</artifactId>
610
<packaging>jar</packaging>
7-
<name>Spring Expression Language</name>
8-
<version>3.0.0.M1</version>
11+
<name>Spring Framework: Expression Language</name>
912
<dependencies>
1013
<dependency>
11-
<groupId>commons-logging</groupId>
12-
<artifactId>commons-logging</artifactId>
13-
<version>1.1.1</version>
14+
<groupId>org.springframework</groupId>
15+
<artifactId>org.springframework.core</artifactId>
16+
<version>${pom.version}</version>
1417
</dependency>
15-
<dependency>
16-
<groupId>org.springframework</groupId>
17-
<artifactId>spring-core</artifactId>
18-
<version>${project.version}</version>
19-
</dependency>
18+
<dependency>
19+
<groupId>org.antlr</groupId>
20+
<artifactId>com.springsource.org.antlr</artifactId>
21+
<version>3.0.1</version>
22+
</dependency>
2023
</dependencies>
2124
</project>

org.springframework.instrument/instrument.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
</content>
1212
<orderEntry type="sourceFolder" forTests="false" />
1313
<orderEntry type="inheritedJdk" />
14-
<orderEntryProperties />
1514
</component>
1615
<component name="copyright">
1716
<Base>

org.springframework.jdbc/jdbc.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
</SOURCES>
8383
</library>
8484
</orderEntry>
85-
<orderEntryProperties />
8685
</component>
8786
<component name="copyright">
8887
<Base>

org.springframework.jms/jms.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
</SOURCES>
8383
</library>
8484
</orderEntry>
85-
<orderEntryProperties />
8685
</component>
8786
<component name="copyright">
8887
<Base>

0 commit comments

Comments
 (0)
X Tutup