-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Labels
PR welcomeA PR submitted for this issue would be welcomeA PR submitted for this issue would be welcomeenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
With the current setup, we need to track(and align) versions separately.
<dependencies>
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-core</artifactId>
<version>${record.builder.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>${record.builder.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
It would be ideal if we could import a BOM to do this easier
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
PR welcomeA PR submitted for this issue would be welcomeA PR submitted for this issue would be welcomeenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers