|
28 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
29 | 29 | <maven.compiler.source>1.8</maven.compiler.source> |
30 | 30 | <maven.compiler.target>1.8</maven.compiler.target> |
| 31 | + |
| 32 | + <!-- dependency versions --> |
| 33 | + <slf4j-api.version>1.7.30</slf4j-api.version> |
| 34 | + <log4j-slf4j-impl.version>2.17.1</log4j-slf4j-impl.version> |
| 35 | + <jackson.version>2.14.1</jackson.version> |
| 36 | + <jfiglet.version>0.0.8</jfiglet.version> |
| 37 | + <junit-jupiter-engine.version>5.3.1</junit-jupiter-engine.version> |
| 38 | + <mockito-core.version>2.21.0</mockito-core.version> |
| 39 | + <mockito-junit-jupiter.version>2.23.0</mockito-junit-jupiter.version> |
| 40 | + <powermock-api-mockito2.version>2.0.0-beta.5</powermock-api-mockito2.version> |
| 41 | + <junit-platform-launcher.version>1.3.1</junit-platform-launcher.version> |
| 42 | + <junit-vintage-engine.version>5.2.0</junit-vintage-engine.version> |
31 | 43 | </properties> |
32 | 44 |
|
33 | 45 | <licenses> |
|
62 | 74 | <dependency> |
63 | 75 | <groupId>org.slf4j</groupId> |
64 | 76 | <artifactId>slf4j-api</artifactId> |
65 | | - <version>1.7.30</version> |
| 77 | + <version>${slf4j-api.version}</version> |
66 | 78 | </dependency> |
67 | 79 |
|
68 | 80 | <dependency> |
69 | 81 | <groupId>org.apache.logging.log4j</groupId> |
70 | 82 | <artifactId>log4j-slf4j-impl</artifactId> |
71 | | - <version>2.17.1</version> |
| 83 | + <version>${log4j-slf4j-impl.version}</version> |
72 | 84 | <scope>test</scope> |
73 | 85 | </dependency> |
74 | 86 |
|
75 | 87 | <dependency> |
76 | 88 | <groupId>com.fasterxml.jackson.core</groupId> |
77 | 89 | <artifactId>jackson-databind</artifactId> |
78 | | - <version>2.13.4</version> |
| 90 | + <version>${jackson.version}</version> |
79 | 91 | </dependency> |
80 | 92 |
|
81 | 93 | <dependency> |
82 | 94 | <groupId>com.fasterxml.jackson.core</groupId> |
83 | 95 | <artifactId>jackson-annotations</artifactId> |
84 | | - <version>2.13.4</version> |
| 96 | + <version>${jackson.version}</version> |
85 | 97 | </dependency> |
86 | 98 |
|
87 | 99 | <dependency> |
88 | 100 | <groupId>com.fasterxml.jackson.core</groupId> |
89 | 101 | <artifactId>jackson-core</artifactId> |
90 | | - <version>2.13.4</version> |
| 102 | + <version>${jackson.version}</version> |
91 | 103 | </dependency> |
92 | 104 |
|
93 | 105 | <dependency> |
94 | 106 | <groupId>com.github.lalyos</groupId> |
95 | 107 | <artifactId>jfiglet</artifactId> |
96 | | - <version>0.0.8</version> |
| 108 | + <version>${jfiglet.version}</version> |
97 | 109 | </dependency> |
98 | 110 |
|
99 | 111 | <dependency> |
100 | 112 | <groupId>org.junit.jupiter</groupId> |
101 | 113 | <artifactId>junit-jupiter-engine</artifactId> |
102 | | - <version>5.3.1</version> |
| 114 | + <version>${junit-jupiter-engine.version}</version> |
103 | 115 | <scope>test</scope> |
104 | 116 | </dependency> |
105 | 117 |
|
106 | 118 | <dependency> |
107 | 119 | <groupId>org.mockito</groupId> |
108 | 120 | <artifactId>mockito-core</artifactId> |
109 | | - <version>2.21.0</version> |
| 121 | + <version>${mockito-core.version}</version> |
110 | 122 | <scope>test</scope> |
111 | 123 | </dependency> |
112 | 124 |
|
113 | 125 | <dependency> |
114 | 126 | <groupId>org.mockito</groupId> |
115 | 127 | <artifactId>mockito-junit-jupiter</artifactId> |
116 | | - <version>2.23.0</version> |
| 128 | + <version>${mockito-junit-jupiter.version}</version> |
117 | 129 | <scope>test</scope> |
118 | 130 | </dependency> |
119 | 131 |
|
120 | 132 | <dependency> |
121 | 133 | <groupId>org.powermock</groupId> |
122 | 134 | <artifactId>powermock-api-mockito2</artifactId> |
123 | | - <version>2.0.0-beta.5</version> |
| 135 | + <version>${powermock-api-mockito2.version}</version> |
124 | 136 | <scope>test</scope> |
125 | 137 | </dependency> |
126 | 138 |
|
127 | 139 | <dependency> |
128 | 140 | <groupId>org.junit.platform</groupId> |
129 | 141 | <artifactId>junit-platform-launcher</artifactId> |
130 | | - <version>1.3.1</version> |
| 142 | + <version>${junit-platform-launcher.version}</version> |
131 | 143 | <scope>test</scope> |
132 | 144 | </dependency> |
133 | 145 |
|
134 | 146 | <dependency> |
135 | 147 | <groupId>org.junit.vintage</groupId> |
136 | 148 | <artifactId>junit-vintage-engine</artifactId> |
137 | | - <version>5.2.0</version> |
| 149 | + <version>${junit-vintage-engine.version}</version> |
138 | 150 | <scope>test</scope> |
139 | 151 | </dependency> |
140 | 152 |
|
|
0 commit comments