Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into WINDUP-3322
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed Oct 5, 2022
2 parents bece79a + 8a026ab commit 927219e
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 1 deletion.
10 changes: 10 additions & 0 deletions services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@
<artifactId>windup-server-provider-spi</artifactId>
<classifier>forge-addon</classifier>
</dependency>
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap-${product-name}</artifactId>
<exclusions>
<exclusion>
<groupId>org.jboss.windup.rules.apps</groupId>
<artifactId>windup-rules-java-diva</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Rules -->

Expand Down
63 changes: 62 additions & 1 deletion tsmodelsgen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</dependency>
<dependency>
<groupId>org.jboss.windup.rules</groupId>
<artifactId>windup-rulesets</artifactId>
<artifactId>windup-rulesets-parent</artifactId>
<version>${version.windup.ruleset}</version>
</dependency>
</dependencies>
Expand Down Expand Up @@ -116,10 +116,12 @@
<version>${version.windup.core}</version>
</dependency>
<!-- But it isn't. The needed rest is referenced as deps in bootstrap. -->
<!-- moved down into profiles to add the one with the proper theme
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap</artifactId>
</dependency>
-->

<!-- Temporary trick to get around addon dependencies issues -->
<dependency>
Expand Down Expand Up @@ -280,5 +282,64 @@
</plugins>
</build>
</profile>
<profile>
<id>windup</id>
<activation>
<property>
<name>!downstream</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap-windup</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>mta</id>
<activation>
<property>
<name>downstream</name>
<value>mta</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap-mta</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>tackle</id>
<activation>
<property>
<name>downstream</name>
<value>tackle</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap-tackle</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>mtr</id>
<activation>
<property>
<name>downstream</name>
<value>mtr</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-bootstrap-mtr</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

0 comments on commit 927219e

Please sign in to comment.