Skip to content

Commit

Permalink
Resolved package dependency in classic all project (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgonzalez authored Aug 4, 2023
1 parent 9b133a5 commit 709bd74
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
5 changes: 4 additions & 1 deletion all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<wknd-shared.version>${wknd-shared.65.version}</wknd-shared.version>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -265,7 +268,7 @@
<dependency>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>aem-guides-wknd-shared.ui.content</artifactId>
<version>${wknd-shared.65.version}</version>
<version>${wknd-shared.version}</version>
<type>zip</type>
</dependency>
</dependencies>
Expand Down
1 change: 0 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ Import-Package: javax.annotation;version=0.0.0,*
</profile>
<profile>
<id>classic</id>

<build>
<plugins>
<plugin>
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@ Bundle-DocURL:
</build>

<profiles>

<!-- ====================================================== -->
<!-- A D O B E P U B L I C P R O F I L E -->
<!-- ====================================================== -->
Expand Down Expand Up @@ -715,6 +716,7 @@ Bundle-DocURL:
</plugins>
</build>
</profile>

</profiles>


Expand Down
10 changes: 9 additions & 1 deletion ui.content.sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
<dependency>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>aem-guides-wknd-shared.ui.content</artifactId>
<version>${wknd-shared.version}</version>
</dependency>
</dependencies>
</configuration>
Expand Down Expand Up @@ -116,4 +115,13 @@
<type>zip</type>
</dependency>
</dependencies>

<profiles>
<profile>
<id>classic</id>
<properties>
<wknd-shared.version>${wknd-shared.65.version}</wknd-shared.version>
</properties>
</profile>
</profiles>
</project>
9 changes: 9 additions & 0 deletions ui.content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,13 @@
<artifactId>aem-sdk-api</artifactId>
</dependency>
</dependencies>

<profiles>
<profile>
<id>classic</id>
<properties>
<wknd-shared.version>${wknd-shared.65.version}</wknd-shared.version>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 709bd74

Please sign in to comment.