コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Uber jar library files overriding the original libraries

Avatar

Level 1

HI,

I have used the Uber Jar 6.4.4 for 6.4 upgrade. The org.json.JSONArray file declared in the package does not implement the Iterable class as the original library, so the following code is failing:

JSONArray summaryArray = new JSONArray(summaryJSONString);

JSONArray jsonArray = new JSONArray(jsonString);

for (Object json : jsonArray) {

if (json instanceof JSONObject) {

//Some code

}

}

Even after adding the original library as a dependency, my code is still referencing to the uber jar file instead of the referenced library.

Dependencies:

<dependency>

<groupId>com.adobe.aem</groupId>

<artifactId>uber-jar</artifactId>

<version>6.4.4</version>

<classifier>apis</classifier>

<scope>provided</scope>

</dependency>

<dependency>

<groupId>org.json</groupId>

<artifactId>json</artifactId>

<version>20180813</version>

</dependency>

Is there a way to override the Uber Jar libraries or to exclude them in the POM?

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

Can you try to reorder both in core pom.xml

Arun Patidar

AEM LinksLinkedIn

元の投稿で解決策を見る

2 返信

Avatar

正解者
Community Advisor

Can you try to reorder both in core pom.xml

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 2

I tried re-ordering it is not working for me.