|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 | <fhir.version>5.5.0</fhir.version> |
16 | 16 | <log4j.version>2.23.0</log4j.version> |
| 17 | + <fasterxml.version>2.16.1</fasterxml.version> |
17 | 18 | </properties> |
18 | 19 | <dependencyManagement> |
19 | 20 | <dependencies> |
|
46 | 47 | <artifactId>hapi-fhir-validation</artifactId> |
47 | 48 | <version>${fhir.version}</version> |
48 | 49 | </dependency> |
49 | | - <dependency> |
50 | | - <groupId>ca.uhn.hapi.fhir</groupId> |
51 | | - <artifactId>hapi-fhir-validation-resources-dstu3</artifactId> |
52 | | - <version>${fhir.version}</version> |
53 | | - <!--Note that the scope is test--> |
54 | | - <scope>test</scope> |
55 | | - </dependency> |
56 | | - <dependency> |
57 | | - <groupId>ca.uhn.hapi.fhir</groupId> |
58 | | - <artifactId>hapi-fhir-structures-dstu3</artifactId> |
59 | | - <version>${fhir.version}</version> |
60 | | - <!--Note that the scope is test--> |
61 | | - <scope>test</scope> |
62 | | - </dependency> |
63 | 50 | <dependency> |
64 | 51 | <groupId>com.amazonaws</groupId> |
65 | 52 | <artifactId>aws-lambda-java-core</artifactId> |
|
105 | 92 | <artifactId>powertools-logging</artifactId> |
106 | 93 | <version>1.18.0</version> |
107 | 94 | </dependency> |
108 | | - <dependency> |
109 | | - <groupId>com.amazonaws</groupId> |
110 | | - <artifactId>aws-xray-recorder-sdk-core</artifactId> |
111 | | - <version>2.4.0</version> |
112 | | - </dependency> |
113 | | - <dependency> |
114 | | - <groupId>com.amazonaws</groupId> |
115 | | - <artifactId>aws-xray-recorder-sdk-aws-sdk-core</artifactId> |
116 | | - <version>2.4.0</version> |
117 | | - </dependency> |
118 | | - <dependency> |
119 | | - <groupId>com.amazonaws</groupId> |
120 | | - <artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId> |
121 | | - <version>2.4.0</version> |
122 | | - </dependency> |
123 | | - <dependency> |
124 | | - <groupId>com.amazonaws</groupId> |
125 | | - <artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId> |
126 | | - <version>2.4.0</version> |
127 | | - </dependency> |
128 | | - |
129 | | - <dependency> |
130 | | - <groupId>com.fasterxml.jackson.core</groupId> |
131 | | - <artifactId>jackson-core</artifactId> |
132 | | - <version>2.12.1</version> |
133 | | - </dependency> |
134 | | - <dependency> |
135 | | - <groupId>io.github.classgraph</groupId> |
136 | | - <artifactId>classgraph</artifactId> |
137 | | - <version>4.8.102</version> |
138 | | - </dependency> |
139 | 95 | <dependency> |
140 | 96 | <groupId>org.projectlombok</groupId> |
141 | 97 | <artifactId>lombok</artifactId> |
142 | 98 | <version>1.18.30</version> |
143 | 99 | <scope>provided</scope> |
144 | 100 | </dependency> |
145 | | - <dependency> |
146 | | - <groupId>commons-codec</groupId> |
147 | | - <artifactId>commons-codec</artifactId> |
148 | | - <version>1.15</version> |
149 | | - </dependency> |
150 | 101 | <dependency> |
151 | 102 | <groupId>org.aspectj</groupId> |
152 | 103 | <artifactId>aspectjrt</artifactId> |
|
155 | 106 | <dependency> |
156 | 107 | <groupId>com.fasterxml.jackson.core</groupId> |
157 | 108 | <artifactId>jackson-core</artifactId> |
158 | | - <version>2.16.1</version> |
| 109 | + <version>${fasterxml.version}</version> |
159 | 110 | </dependency> |
160 | 111 | <dependency> |
161 | 112 | <groupId>com.fasterxml.jackson.core</groupId> |
162 | 113 | <artifactId>jackson-databind</artifactId> |
163 | | - <version>2.16.1</version> |
| 114 | + <version>${fasterxml.version}</version> |
164 | 115 | </dependency> |
165 | 116 | <dependency> |
166 | 117 | <groupId>com.fasterxml.jackson.core</groupId> |
167 | 118 | <artifactId>jackson-annotations</artifactId> |
168 | | - <version>2.16.1</version> |
| 119 | + <version>${fasterxml.version}</version> |
169 | 120 | </dependency> |
170 | 121 | <!-- Test Dependencies --> |
171 | 122 | <dependency> |
|
190 | 141 | </resource> |
191 | 142 | </resources> |
192 | 143 | <plugins> |
| 144 | + <plugin> |
| 145 | + <artifactId>maven-dependency-plugin</artifactId> |
| 146 | + <version>3.1.2</version> |
| 147 | + </plugin> |
193 | 148 | <plugin> |
194 | 149 | <artifactId>maven-compiler-plugin</artifactId> |
195 | 150 | <version>3.9.0</version> |
|
0 commit comments