Skip to content

Commit 416302f

Browse files
author
eugenp
committed
maven upgrades, xsd cleanup
1 parent 1da86e7 commit 416302f

File tree

71 files changed

+128
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+128
-128
lines changed

spring-all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221

222222
<properties>
223223
<!-- Spring -->
224-
<org.springframework.version>4.2.0.RELEASE</org.springframework.version>
224+
<org.springframework.version>4.2.2.RELEASE</org.springframework.version>
225225
<org.springframework.security.version>4.0.2.RELEASE</org.springframework.security.version>
226226
<javassist.version>3.20.0-GA</javassist.version>
227227
<jstl.version>1.2</jstl.version>

spring-all/src/main/resources/basicConfigForProperties.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:util="http://www.springframework.org/schema/util"
44
xsi:schemaLocation="
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
88
>
99

1010
<context:property-placeholder location="classpath:foo.properties"/>

spring-all/src/main/resources/basicConfigForPropertiesOne.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:util="http://www.springframework.org/schema/util"
44
xsi:schemaLocation="
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
88
>
99

1010
<context:property-placeholder location="classpath:foo.properties" ignore-unresolvable="true" order="1"/>

spring-all/src/main/resources/basicConfigForPropertiesTwo.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:util="http://www.springframework.org/schema/util"
44
xsi:schemaLocation="
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
88
>
99

1010
<context:property-placeholder location="classpath:bar.properties" order="2"/>

spring-all/src/main/resources/config.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cache="http://www.springframework.org/schema/cache"
22
xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop"
33
xsi:schemaLocation="
4-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
5-
http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-4.0.xsd
6-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
7-
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
4+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
5+
http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-4.2.xsd
6+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
7+
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
88
"
99
>
1010

spring-all/src/main/resources/configForProperties.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:util="http://www.springframework.org/schema/util"
44
xsi:schemaLocation="
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
88
>
99

1010
<context:property-placeholder location="classpath:foo.properties"/>

spring-all/src/main/resources/configForPropertiesOne.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:util="http://www.springframework.org/schema/util"
44
xsi:schemaLocation="
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
88
>
99

1010
<context:property-placeholder location="classpath:foo.properties" ignore-unresolvable="true" order="1"/>

spring-all/src/main/resources/jdbc/springJdbc-config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
3-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
4-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
3+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
4+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
55
>
66

77
<bean id="employeeDao" class="org.baeldung.jdbc.EmployeeDAO">

spring-all/src/main/resources/springAsync-config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
33
xmlns:task="http://www.springframework.org/schema/task"
4-
xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd
5-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
6-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
4+
xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.2.xsd
5+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
77
>
88

99
<task:annotation-driven executor="myExecutor"/>

spring-all/src/main/resources/springProfiles-config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
3-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
4-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
3+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
4+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"
55
>
66

77
<beans profile="dev">

0 commit comments

Comments
 (0)