|
19 | 19 |
|
20 | 20 | <groupId>com.americanexpress.unify.jdocs</groupId> |
21 | 21 | <artifactId>unify-jdocs</artifactId> |
22 | | - <version>1.7.1</version> |
| 22 | + <version>1.8.0</version> |
23 | 23 | <packaging>jar</packaging> |
24 | 24 |
|
25 | 25 | <name>unify-jdocs</name> |
26 | 26 |
|
27 | 27 | <properties> |
28 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
29 | | - <maven.compiler.source>1.8</maven.compiler.source> |
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.16.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> |
43 | 29 | </properties> |
44 | 30 |
|
45 | 31 | <licenses> |
|
74 | 60 | <dependency> |
75 | 61 | <groupId>org.slf4j</groupId> |
76 | 62 | <artifactId>slf4j-api</artifactId> |
77 | | - <version>${slf4j-api.version}</version> |
| 63 | + <version>1.7.30</version> |
78 | 64 | </dependency> |
79 | 65 |
|
80 | 66 | <dependency> |
81 | 67 | <groupId>org.apache.logging.log4j</groupId> |
82 | 68 | <artifactId>log4j-slf4j-impl</artifactId> |
83 | | - <version>${log4j-slf4j-impl.version}</version> |
| 69 | + <version>2.17.1</version> |
84 | 70 | <scope>test</scope> |
85 | 71 | </dependency> |
86 | 72 |
|
87 | 73 | <dependency> |
88 | 74 | <groupId>com.fasterxml.jackson.core</groupId> |
89 | 75 | <artifactId>jackson-databind</artifactId> |
90 | | - <version>${jackson.version}</version> |
| 76 | + <version>2.16.1</version> |
91 | 77 | </dependency> |
92 | 78 |
|
93 | 79 | <dependency> |
94 | 80 | <groupId>com.fasterxml.jackson.core</groupId> |
95 | 81 | <artifactId>jackson-annotations</artifactId> |
96 | | - <version>${jackson.version}</version> |
| 82 | + <version>2.16.1</version> |
97 | 83 | </dependency> |
98 | 84 |
|
99 | 85 | <dependency> |
100 | 86 | <groupId>com.fasterxml.jackson.core</groupId> |
101 | 87 | <artifactId>jackson-core</artifactId> |
102 | | - <version>${jackson.version}</version> |
| 88 | + <version>2.16.1</version> |
103 | 89 | </dependency> |
104 | 90 |
|
105 | 91 | <dependency> |
106 | 92 | <groupId>com.github.lalyos</groupId> |
107 | 93 | <artifactId>jfiglet</artifactId> |
108 | | - <version>${jfiglet.version}</version> |
| 94 | + <version>0.0.8</version> |
109 | 95 | </dependency> |
110 | 96 |
|
111 | 97 | <dependency> |
|
117 | 103 | <dependency> |
118 | 104 | <groupId>org.junit.jupiter</groupId> |
119 | 105 | <artifactId>junit-jupiter-engine</artifactId> |
120 | | - <version>${junit-jupiter-engine.version}</version> |
| 106 | + <version>5.11.4</version> |
121 | 107 | <scope>test</scope> |
122 | 108 | </dependency> |
123 | 109 |
|
124 | 110 | <dependency> |
125 | 111 | <groupId>org.mockito</groupId> |
126 | 112 | <artifactId>mockito-core</artifactId> |
127 | | - <version>${mockito-core.version}</version> |
| 113 | + <version>5.15.2</version> |
128 | 114 | <scope>test</scope> |
129 | 115 | </dependency> |
130 | 116 |
|
131 | 117 | <dependency> |
132 | 118 | <groupId>org.mockito</groupId> |
133 | 119 | <artifactId>mockito-junit-jupiter</artifactId> |
134 | | - <version>${mockito-junit-jupiter.version}</version> |
| 120 | + <version>5.15.2</version> |
135 | 121 | <scope>test</scope> |
136 | 122 | </dependency> |
137 | 123 |
|
138 | 124 | <dependency> |
139 | 125 | <groupId>org.powermock</groupId> |
140 | 126 | <artifactId>powermock-api-mockito2</artifactId> |
141 | | - <version>${powermock-api-mockito2.version}</version> |
| 127 | + <version>2.0.9</version> |
142 | 128 | <scope>test</scope> |
143 | 129 | </dependency> |
144 | 130 |
|
145 | 131 | <dependency> |
146 | 132 | <groupId>org.junit.platform</groupId> |
147 | 133 | <artifactId>junit-platform-launcher</artifactId> |
148 | | - <version>${junit-platform-launcher.version}</version> |
| 134 | + <version>1.11.4</version> |
149 | 135 | <scope>test</scope> |
150 | 136 | </dependency> |
151 | 137 |
|
152 | 138 | <dependency> |
153 | 139 | <groupId>org.junit.vintage</groupId> |
154 | 140 | <artifactId>junit-vintage-engine</artifactId> |
155 | | - <version>${junit-vintage-engine.version}</version> |
| 141 | + <version>5.11.4</version> |
156 | 142 | <scope>test</scope> |
157 | 143 | </dependency> |
158 | 144 |
|
|
163 | 149 | <plugin> |
164 | 150 | <groupId>org.apache.maven.plugins</groupId> |
165 | 151 | <artifactId>maven-jar-plugin</artifactId> |
166 | | - <version>3.2.2</version> |
| 152 | + <version>3.4.2</version> |
167 | 153 | </plugin> |
168 | 154 | <plugin> |
169 | 155 | <groupId>org.apache.maven.plugins</groupId> |
170 | 156 | <artifactId>maven-deploy-plugin</artifactId> |
171 | | - <version>2.8.2</version> |
| 157 | + <version>3.1.4</version> |
172 | 158 | </plugin> |
173 | 159 | <plugin> |
174 | 160 | <groupId>org.apache.maven.plugins</groupId> |
175 | 161 | <artifactId>maven-compiler-plugin</artifactId> |
176 | | - <version>3.8.0</version> |
| 162 | + <version>3.14.0</version> |
| 163 | + <configuration> |
| 164 | + <compilerArgs> |
| 165 | + <arg>-Xlint:deprecation</arg> |
| 166 | + <arg>-Xlint:unchecked</arg> |
| 167 | + <arg>-Xlint:-options</arg> |
| 168 | + </compilerArgs> |
| 169 | + <release>8</release> |
| 170 | + <source>8</source> |
| 171 | + <target>8</target> |
| 172 | + </configuration> |
177 | 173 | </plugin> |
178 | 174 | </plugins> |
179 | 175 | </build> |
|
0 commit comments