Skip to content

Commit

Permalink
#31 ⬆️ upgrade parent pom, default Python version to 3.11.9, and Java…
Browse files Browse the repository at this point in the history
… (for build process) to 17
  • Loading branch information
d-ryan-ashcraft committed Aug 15, 2024
1 parent d647574 commit 2e30de0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Python # use direct install rather than pyenv for CI for large speed improvement
uses: actions/setup-python@v5
with:
python-version: '3.11.4'
python-version: '3.11.9'

- name: Load cached Poetry installation
id: cached-poetry
Expand All @@ -38,10 +38,10 @@ jobs:
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: maven

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.technologybrewery</groupId>
<artifactId>parent</artifactId>
<version>9</version>
<version>10</version>
</parent>

<groupId>org.technologybrewery</groupId>
Expand Down Expand Up @@ -47,7 +47,7 @@
</scm>

<properties>
<version.habushu.plugin>2.15.0</version.habushu.plugin>
<version.habushu.plugin>2.16.1</version.habushu.plugin>
</properties>

<build>
Expand All @@ -58,7 +58,7 @@
<version>${version.habushu.plugin}</version>
<extensions>true</extensions>
<configuration>
<pythonVersion>3.11.4</pythonVersion>
<pythonVersion>3.11.9</pythonVersion>
</configuration>
</plugin>
<plugin>
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ poetry-plugin-export = ">=1.5.0"
cleo = ">=2.0.1"

[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
behave = "^1.2.6"
nose = "^1.3.7"
pylint = "^3.2.2"
kappa-maki = "^1.0.2"
black = ">=22.8.0"
behave = ">=1.2.6"
nose = ">=1.3.7"
pylint = ">=3.2.2"
kappa-maki = ">=1.0.2"

[tool.poetry.plugins."poetry.application.plugin"]
poetry-monorepo-dependency-plugin = "poetry_monorepo_dependency_plugin.plugin:MonorepoDependencyPlugin"
Expand Down

0 comments on commit 2e30de0

Please sign in to comment.