|
6 | 6 | <artifactId>spring-batch-2</artifactId>
|
7 | 7 | <version>0.1-SNAPSHOT</version>
|
8 | 8 | <name>spring-batch-2</name>
|
9 |
| - <build> |
10 |
| - <plugins> |
11 |
| - <plugin> |
12 |
| - <groupId>org.apache.maven.plugins</groupId> |
13 |
| - <artifactId>maven-compiler-plugin</artifactId> |
14 |
| - <configuration> |
15 |
| - <source>21</source> |
16 |
| - <target>21</target> |
17 |
| - </configuration> |
18 |
| - </plugin> |
19 |
| - </plugins> |
20 |
| - </build> |
21 | 9 | <packaging>jar</packaging>
|
22 | 10 | <url>http://maven.apache.org</url>
|
23 | 11 |
|
|
65 | 53 | <artifactId>lombok</artifactId>
|
66 | 54 | <version>${lombok.version}</version>
|
67 | 55 | </dependency>
|
| 56 | + <dependency> |
| 57 | + <groupId>org.glassfish.jaxb</groupId> |
| 58 | + <artifactId>jaxb-runtime</artifactId> |
| 59 | + <version>${jaxb.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.apache.httpcomponents</groupId> |
| 63 | + <artifactId>httpclient</artifactId> |
| 64 | + <version>${http-client.version}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.codehaus.jettison</groupId> |
| 68 | + <artifactId>jettison</artifactId> |
| 69 | + <version>${jettison.version}</version> |
| 70 | + <scope>compile</scope> |
| 71 | + </dependency> |
68 | 72 | <dependency>
|
69 | 73 | <groupId>org.springframework</groupId>
|
70 |
| - <artifactId>spring-core</artifactId> |
71 |
| - <version>${spring-core.version}</version> |
| 74 | + <artifactId>spring-oxm</artifactId> |
| 75 | + <version>${spring-oxm.version}</version> |
| 76 | + <exclusions> |
| 77 | + <exclusion> |
| 78 | + <artifactId>commons-logging</artifactId> |
| 79 | + <groupId>commons-logging</groupId> |
| 80 | + </exclusion> |
| 81 | + </exclusions> |
72 | 82 | </dependency>
|
73 | 83 | </dependencies>
|
74 | 84 |
|
| 85 | + <build> |
| 86 | + <plugins> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + </plugin> |
| 91 | + </plugins> |
| 92 | + </build> |
| 93 | + |
75 | 94 | <properties>
|
| 95 | + <spring-oxm.version>6.1.4</spring-oxm.version> |
| 96 | + <http-client.version>4.5.14</http-client.version> |
| 97 | + <jaxb.version>4.0.2</jaxb.version> |
| 98 | + <jettison.version>1.5.4</jettison.version> |
76 | 99 | <spring.batch.version>5.1.2</spring.batch.version>
|
77 | 100 | <awaitility.version>4.2.1</awaitility.version>
|
78 | 101 | <start-class>com.baeldung.batch.SpringBootBatchProcessingApplication</start-class>
|
79 |
| - <spring-core.version>6.1.5</spring-core.version> |
80 | 102 | </properties>
|
81 | 103 |
|
82 | 104 | </project>
|
0 commit comments