Skip to content

Commit

Permalink
#69 ⬆️ pull dependencies up to sensible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ryan-ashcraft committed Dec 13, 2023
1 parent fd42a3f commit ed88a18
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions habushu-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-bom</artifactId>
<version>7.12.0</version>
<version>7.15.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.3</version>
<version>5.10.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -52,7 +52,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.14.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -67,12 +67,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>com.electronwill.night-config</groupId>
<artifactId>toml</artifactId>
<version>3.6.6</version>
<version>3.6.7</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -92,7 +92,7 @@
<dependency>
<groupId>org.technologybrewery.baton</groupId>
<artifactId>baton-maven-plugin</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -107,7 +107,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
<version>2.15.1</version>
</dependency>

<!-- Provided Dependencies: -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,15 @@ public abstract class AbstractHabushuMojo extends AbstractMojo {
@Parameter(property = "habushu.pypiRepoUrl")
protected String pypiRepoUrl;

/**
* Toggle for whether the server password should be decrypted or retrieved as
* plain text.
* <p>
* true (default) -> decrypt false -> plain text
*/
@Parameter(property = "habushu.decryptPassword", defaultValue = "true")
protected boolean decryptPassword;

/**
* Specifies whether the version of the encapsulated Poetry package should be
* automatically managed and overridden where necessary by Habushu. If this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,6 @@ public class PublishToPyPiRepoMojo extends AbstractHabushuMojo {
@Parameter(property = "habushu.snapshotNumberDateFormatPattern")
protected String snapshotNumberDateFormatPattern;

/**
* Toggle for whether the server password should be decrypted or retrieved as
* plain text.
* <p>
* true (default) -> decrypt false -> plain text
*/
@Parameter(property = "habushu.decryptPassword", defaultValue = "true")
protected boolean decryptPassword;

/**
* Skips the entire execution of the deploy phase and does *not* publish the
* Poetry package to the configured PyPI repository. This configuration may be
Expand Down
2 changes: 1 addition & 1 deletion habushu-mixology-consumer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ black = "^23.3.0"
behave = "^1.2.6"

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion habushu-mixology/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ grpcio-tools = "^1.48.0"
python-dotenv = "^0.20.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion 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>6</version>
<version>7</version>
</parent>

<groupId>org.technologybrewery.habushu</groupId>
Expand Down

0 comments on commit ed88a18

Please sign in to comment.