JanusGraph / JanusGraph/janusgraph-foundationdb
Add maven enforcer plugin
Open
Nobody has claimed this yet.
good first issue
- Dominant language
- Java
- Stars
- 59
- Forks
- 20
- PR merge metrics
- No merged PRs in 30d
Description
Example from JanusGraph/pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce-dependency-convergence</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireUpperBoundDeps>
<excludes>
<exclude>com.google.guava:guava</exclude>
</excludes>
</requireUpperBoundDeps>
<DependencyConvergence />
</rules>
</configuration>
</execution>
</executions>
</plugin>
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Inspect the repository's Maven POM files and compare them with the JanusGraph/pom.xml example in the issue. Run the Maven build before and after adding the specified enforcer configuration; done means the plugin is configured and the build completes with dependency convergence checks.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- build-system
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100