在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):lewisd32/lint-maven-plugin开源软件地址(OpenSource Url):https://github.com/lewisd32/lint-maven-plugin开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):One-Time Usage InstructionsIf you want to try out lint, or run it one time with minimal hassle and no config changes, follow these simple steps:
Add Lint to your Build
[...]
<build>
<plugins>
<plugin>
<groupId>com.lewisd</groupId>
<artifactId>lint-maven-plugin</artifactId>
<version>0.0.8</version>
<executions>
<execution>
<id>pom-lint</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...] 3. Build your project as usual (usually "mvn install"). The build will fail if lint finds a problem. Configure Rules and Failing on violation<plugin>
<groupId>com.lewisd</groupId>
<artifactId>lint-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<failOnViolation>false</failOnViolation>
<onlyRunRules>
<rule>ExecutionId</rule>
</onlyRunRules>
<xmlOutputFile>${project.build.directory}/maven-lint-result.xml</xmlOutputFile>
</configuration>
<executions>
<execution>
<id>pom-lint</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin> List available Rulesmvn com.lewisd:lint-maven-plugin:list
The convention is to specify properties used to hold versions as some.library.version, or some-library.version, but never some-library-version or some.library-version.
The
Maven convention is that the groupId, artifactId, and version elements be listed in that order. Other elements with short, simple content, such as type, scope, classifier, etc, should be before elements with longer content, such as configuration, executions, and exclusions, otherwise they can be easily missed, leading to confusion.
Dependency versions should be set in one place, and not overridden without the version. If, for example, sets a version, and somewhere overrides it, but with the same version, this can make version more difficult, due to the repetition.
Plugin versions should be set in one place, and not overridden without changing version. If, for example, sets a version, and overrides it, but with the same version, this can make version upgrades more due to the repetition.
Profiles who's ids match the pattern with-.* must only add modules to the reactor.
Multiple dependencies, in or , with the co-ordinates are reduntant, and can be confusing. If they have different they can lead to unexpected behaviour.
Executions should always specify an id, so they can be overridden in child and uniquely identified in build logs.
The users/developers need to know where to get active bugs and to report new to.
For better understanding the project a link to the used integration system users to trust.
For better understanding the project the inception year of your project is required.
The users/developers need to know where to get active bugs and to report new to.
Each project should be licensed under a specific license so the terms of usage clear.
For better understanding the project a link to your project is required. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论