You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I want to use deb-maven-plugin in the pom.xml after executing the package code it says Maintainer is missing but it's already mentioned in the configuration. Could you please check my plugin part at pom.xml and let me know where I am doing wrong ?
Hello
When I want to use deb-maven-plugin in the pom.xml after executing the package code it says Maintainer is missing but it's already mentioned in the configuration. Could you please check my plugin part at pom.xml and let me know where I am doing wrong ?
<plugin> <groupId>io.solit.maven</groupId> <artifactId>deb-maven-plugin</artifactId> <version>1.0-RC2</version> <extensions>true</extensions> <configuration> <copyOriginalChangelog>false</copyOriginalChangelog> <convertToDebianChangelog>true</convertToDebianChangelog> <appendCurrentVersionChangeSet>true</appendCurrentVersionChangeSet> <version>${project.version}</version> <revision></revision> <changelogSource>${project.basedir}/changelog.md</changelogSource> <upstreamChangelogSource>${project.basedir}/changelog.md</upstreamChangelogSource> <changelogDestinationDirectory></changelogDestinationDirectory> <stageDir>${project.build.directory}/deb</stageDir> <packageName>${project.artifactId}</packageName> <maintainer>alperkopuz@gmail.com</maintainer> <maintainerEmail>alperkopuz@gmail.com</maintainerEmail> <targetDistribution>stable</targetDistribution> <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> </configuration> </plugin>
The text was updated successfully, but these errors were encountered: