Skip to content

Commit

Permalink
Fixed Windup version to be '6.1.3-SNAPSHOT' (#107)
Browse files Browse the repository at this point in the history
* Fixed Windup version to be '6.1.3-SNAPSHOT'

* Added the branch to checkout action

* Added windup-maven-plugin build

* Added windup-rulesets build
  • Loading branch information
mrizzi authored Jan 18, 2023
1 parent dcaebe4 commit 46942fb
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 13 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/pr-build-jdk11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@ jobs:
with:
repository: windup/windup
path: windup
- name: Checkout windup repo
ref: ${{ github.base_ref }}
- name: Checkout windup-maven-plugin repo
uses: actions/checkout@v3
with:
repository: windup/windup-maven-plugin
path: windup-maven-plugin
ref: ${{ github.base_ref }}
- name: Checkout windup-rulesets repo
uses: actions/checkout@v3
with:
repository: windup/windup-rulesets
path: windup-rulesets
ref: ${{ github.base_ref }}
- name: Checkout windup-quickstarts repo
uses: actions/checkout@v3
with:
path: windup-quickstarts
Expand All @@ -33,8 +46,9 @@ jobs:
cache: 'maven'
- name: Build Windup on JDK 11
run: mvn -B clean install -DskipTests -f windup
- name: Build Windup Rules on JDK 11
run: mvn -B clean install -DskipTests -f windup-rulesets
- name: Build Windup Maven Plugin on JDK 11
run: mvn -B clean install -DskipTests -f windup-maven-plugin
- name: Build on JDK 11
run: mvn -B clean install -s ./windup-quickstarts/settings.xml -DskipTests -f windup-quickstarts && mvn -B clean install -s ./windup-quickstarts/settings.xml -f windup-quickstarts



2 changes: 1 addition & 1 deletion ejb-beanutils-async/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<groupId>org.jboss.windup.quickstarts</groupId>
Expand Down
2 changes: 1 addition & 1 deletion ejb-beanutils-async/rules-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions maven-plugin-usage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
</scm>

<properties>
<version.windup>6.1.1.Final</version.windup>
<version.windup-maven-plugin>6.1.1.Final</version.windup-maven-plugin>
<version.windup>6.1.3-SNAPSHOT</version.windup>
<version.windup-maven-plugin>6.1.3-SNAPSHOT</version.windup-maven-plugin>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion proprietary-javaee-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<groupId>org.jboss.windup.quickstarts</groupId>
Expand Down
2 changes: 1 addition & 1 deletion proprietary-javaee-servlet/rules-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions victi.ms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<groupId>org.jboss.windup.quickstarts</groupId>
<artifactId>windup-victims</artifactId>
<version>6.1.1.Final</version>
<version>6.1.3-SNAPSHOT</version>

<name>Windup Quickstart: Victi.ms Ruleset</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.windup>6.1.1.Final</version.windup>
<version.windup>6.1.3-SNAPSHOT</version.windup>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 46942fb

Please sign in to comment.