dependency-update-maven-plugin icon indicating copy to clipboard operation
dependency-update-maven-plugin copied to clipboard

Make StrictHostKeyChecking configurable

Open sparsick opened this issue 3 years ago • 1 comments

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

sparsick avatar Dec 19 '22 17:12 sparsick

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>

georgberky avatar Jan 02 '23 18:01 georgberky