|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.baeldung.examples.guice</groupId> |
6 | | - <artifactId>guice</artifactId> |
7 | | - <version>1.0-SNAPSHOT</version> |
8 | | - <packaging>jar</packaging> |
9 | | - <name>guice</name> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>com.baeldung.examples.guice</groupId> |
| 7 | + <artifactId>guice</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + <name>guice</name> |
10 | 11 |
|
11 | | - <parent> |
12 | | - <groupId>com.baeldung</groupId> |
13 | | - <artifactId>parent-modules</artifactId> |
14 | | - <version>1.0.0-SNAPSHOT</version> |
15 | | - </parent> |
| 12 | + <parent> |
| 13 | + <groupId>com.baeldung</groupId> |
| 14 | + <artifactId>parent-modules</artifactId> |
| 15 | + <version>1.0.0-SNAPSHOT</version> |
| 16 | + </parent> |
16 | 17 |
|
17 | | - <dependencies> |
18 | | - <dependency> |
19 | | - <groupId>com.google.inject</groupId> |
20 | | - <artifactId>guice</artifactId> |
21 | | - <version>${guice.version}</version> |
22 | | - </dependency> |
23 | | - </dependencies> |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>com.google.inject</groupId> |
| 21 | + <artifactId>guice</artifactId> |
| 22 | + <version>${guice.version}</version> |
| 23 | + </dependency> |
24 | 24 |
|
25 | | - <properties> |
26 | | - <guice.version>4.1.0</guice.version> |
27 | | - </properties> |
| 25 | + <dependency> |
| 26 | + <groupId>org.springframework</groupId> |
| 27 | + <artifactId>spring-context</artifactId> |
| 28 | + <version>${spring.version}</version> |
| 29 | + </dependency> |
| 30 | + |
| 31 | + <dependency> |
| 32 | + <groupId>org.springframework</groupId> |
| 33 | + <artifactId>spring-test</artifactId> |
| 34 | + <version>${springtest.version}</version> |
| 35 | + <scope>test</scope> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + |
| 39 | + <properties> |
| 40 | + <guice.version>4.1.0</guice.version> |
| 41 | + <spring.version>5.1.3.RELEASE</spring.version> |
| 42 | + <springtest.version>5.1.3.RELEASE</springtest.version> |
| 43 | + </properties> |
28 | 44 |
|
29 | 45 | </project> |
0 commit comments