Commit 24fd156f authored by Noel Alonso's avatar Noel Alonso
Browse files

Reemplaza orika por mapstruct

parent 6b4ca683
Loading
Loading
Loading
Loading
+19 −4
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@

		<!-- OTROS -->
		<elasticsearch.version>6.5.1</elasticsearch.version>
		<mapstruct.version>1.3.0.Final</mapstruct.version>
	</properties>

	<dependencies>
@@ -67,9 +68,9 @@
		</dependency>
		
		<dependency>
			<groupId>ma.glasnost.orika</groupId>
			<artifactId>orika-core</artifactId>
			<version>${ma.glasnost.orika.core.version}</version>
			<groupId>org.mapstruct</groupId>
			<artifactId>mapstruct</artifactId>
			<version>${mapstruct.version}</version>
		</dependency>

		<!-- tests -->
@@ -131,6 +132,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>
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@
		<redmic.atlas-lib.version>0.1.0</redmic.atlas-lib.version>
		<redmic.exceptions.version>0.9.0</redmic.exceptions.version>
		<!-- Versions of the OTHERS library used in the children -->
		<ma.glasnost.orika.core.version>1.5.2</ma.glasnost.orika.core.version>
		<kafka.version>2.0.1</kafka.version>

		<!-- Plugins -->