georgberky / dependency-update-maven-plugin

A Maven plugin that creates merge requests for dependency updates.
Apache License 2.0
26 stars 9 forks source link

Make StrictHostKeyChecking configurable #70

Open sparsick opened 1 year ago

sparsick commented 1 year ago

As developer, I want to make the option StrictHostKeyChecking configurable. The default should be true.

georgberky commented 1 year ago

We have agreed on the following configuration format:

    <build>
        <plugins>
            <plugin>
                <groupId>${project.groupId}</groupId>
                <artifactId>${project.artifactId}</artifactId>
                <version>${project.version}</version>
                <configuration>
                    <gitProvider>JGIT</gitProvider>
                    <sshOptions>
                        <strictHostKeyChecking>false</strictHostKeyChecking>
                    </sshOptions>
                </configuration>
            </plugin>
        </plugins>
    </build>