Commit 3b7b5c12 authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade plugin para compilar mapstruct

parent b0f41d28
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -129,6 +129,20 @@
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<annotationProcessorPaths>
						<path>
							<groupId>org.mapstruct</groupId>
							<artifactId>mapstruct-processor</artifactId>
							<version>${mapstruct.version}</version>
						</path>
						<!-- other annotation processors -->
					</annotationProcessorPaths>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>