|
113 | 113 | <dependency> |
114 | 114 | <groupId>org.jlab.coda</groupId> |
115 | 115 | <artifactId>jclara</artifactId> |
116 | | - <version>4.3-SNAPSHOT</version> |
| 116 | + <version>4.3-SNAPSHOT</version> <!-- WARNING: if changed, check the `com.google.code.gson:gson` version; see `docs/dependency_conflicts.md` --> |
117 | 117 | </dependency> |
118 | 118 |
|
119 | 119 | <dependency> |
|
144 | 144 | <dependency> |
145 | 145 | <groupId>org.jlab.jnp</groupId> |
146 | 146 | <artifactId>jnp-hipo</artifactId> |
147 | | - <version>2.0-SNAPSHOT</version> |
| 147 | + <version>2.0-SNAPSHOT</version> <!-- WARNING: if changed, check the `net.objecthunter:exp4j` version; see `docs/dependency_conflicts.md` --> |
148 | 148 | </dependency> |
149 | 149 |
|
150 | 150 | <dependency> |
151 | 151 | <groupId>org.jlab.jnp</groupId> |
152 | 152 | <artifactId>jnp-hipo4</artifactId> |
153 | | - <version>4.3-SNAPSHOT</version> |
| 153 | + <version>4.3-SNAPSHOT</version> <!-- WARNING: if changed, check the `net.objecthunter:exp4j` version; see `docs/dependency_conflicts.md` --> |
| 154 | + </dependency> |
| 155 | + |
| 156 | + <dependency> |
| 157 | + <groupId>j4ml</groupId> |
| 158 | + <artifactId>j4ml-neuroph</artifactId> |
| 159 | + <version>0.9-SNAPSHOT</version> |
| 160 | + </dependency> |
| 161 | + |
| 162 | + <dependency> |
| 163 | + <groupId>j4ml</groupId> |
| 164 | + <artifactId>j4ml-data</artifactId> |
| 165 | + <version>0.9-SNAPSHOT</version> |
| 166 | + </dependency> |
| 167 | + |
| 168 | + <dependency> |
| 169 | + <groupId>j4ml</groupId> |
| 170 | + <artifactId>j4ml-clas12</artifactId> |
| 171 | + <version>0.9-SNAPSHOT</version> <!-- WARNING: if changed, check the `org.ejml:ejml-simple` version; see `docs/dependency_conflicts.md` --> |
154 | 172 | </dependency> |
155 | 173 |
|
156 | 174 | <dependency> |
|
165 | 183 | <version>1.0.3</version> |
166 | 184 | </dependency> |
167 | 185 |
|
168 | | - <dependency> |
| 186 | + <dependency> <!-- sets version number for all 'ai.djl' dependencies --> |
169 | 187 | <groupId>ai.djl</groupId> |
170 | 188 | <artifactId>bom</artifactId> |
171 | | - <version>0.34.0</version> <!-- sets version number for all 'ai.djl' dependencies --> |
| 189 | + <version>0.34.0</version> <!-- WARNING: if changed, check the `com.google.code.gson:gson` version; see `docs/dependency_conflicts.md` --> |
172 | 190 | <type>pom</type> |
173 | 191 | <scope>import</scope> |
174 | 192 | </dependency> |
175 | 193 |
|
176 | 194 | <!-- BEGIN DEPENDENCY CONFLICT RESOLUTION --> |
177 | | - <!-- the following dependency versions are specified to resolve dependency tree conflicts; see also exclusions in `maven-enforcer-plugin` --> |
178 | | - |
179 | | - <dependency> <!-- conflict between `org.jlab.jnp:jnp-hipo:jar:2.0-SNAPSHOT` and `org.jlab.jnp:jnp-hipo4:jar:4.3-SNAPSHOT` --> |
| 195 | + <!-- |
| 196 | + the following dependency versions are specified to resolve dependency tree conflicts |
| 197 | + - see also exclusions in `maven-enforcer-plugin` |
| 198 | + - see `docs/dependency_conflicts.md` for more info |
| 199 | + --> |
| 200 | + |
| 201 | + <!-- resolve conflict between `org.jlab.jnp:jnp-hipo:jar:2.0-SNAPSHOT` and `org.jlab.jnp:jnp-hipo4:jar:4.3-SNAPSHOT` |
| 202 | + by choosing the later version of their `net.objecthunter:exp4j` dependency --> |
| 203 | + <dependency> |
180 | 204 | <groupId>net.objecthunter</groupId> |
181 | 205 | <artifactId>exp4j</artifactId> |
182 | | - <version>0.4.8</version> <!-- choose the later version --> |
| 206 | + <version>0.4.8</version> <!-- WARNING: if changed, see `docs/dependency_conflicts.md` --> |
183 | 207 | </dependency> |
184 | 208 |
|
185 | | - <dependency> <!-- resolve conflict between `org.jlab.coda:jclara` and `ai.djl:api` --> |
| 209 | + <!-- resolve conflict between `org.jlab.coda:jclara` and `ai.djl:api` |
| 210 | + by choosing the later version of their `com.google.code.gson:gson` dependency --> |
| 211 | + <dependency> |
186 | 212 | <groupId>com.google.code.gson</groupId> |
187 | 213 | <artifactId>gson</artifactId> |
188 | | - <version>2.13.1</version> <!-- choose the later version --> |
| 214 | + <version>2.13.1</version> <!-- WARNING: if changed, see `docs/dependency_conflicts.md` --> |
189 | 215 | </dependency> |
190 | 216 |
|
191 | | - <dependency> <!-- resolve conflict between `j4ml:j4ml-clas12` and `clas-tracking` --> |
| 217 | + <!-- resolve conflict between `j4ml:j4ml-clas12` and `clas-tracking` |
| 218 | + by using the version of `org.ejml:ejml-simple` used by `j4ml:j4ml-clas12:jar:0.9-SNAPSHOT` --> |
| 219 | + <dependency> |
192 | 220 | <groupId>org.ejml</groupId> |
193 | 221 | <artifactId>ejml-simple</artifactId> |
194 | | - <version>0.40</version> <!-- match version from `j4ml:j4ml-clas12:jar:0.9-SNAPSHOT` --> |
| 222 | + <version>0.40</version> <!-- WARNING: if changed, see `docs/dependency_conflicts.md` --> |
195 | 223 | </dependency> |
196 | 224 |
|
197 | 225 | <!-- END DEPENDENCY CONFLICT RESOLUTION --> |
|
0 commit comments