Commit 14e4f30f authored by Noel Alonso's avatar Noel Alonso
Browse files

Reestructura pom del proyecto

parent 217a5afe
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -16,13 +16,8 @@
	<name>template</name>

	<properties>
		<!-- Versions of the REDMIC library used in the children -->
		<redmic.broker-lib.version>0.6.0</redmic.broker-lib.version>
		<!-- Añadir versión de la librería de la unidad funcional -->
		<redmic.commands-lib.version>0.6.0</redmic.commands-lib.version>
		<redmic.test-utils.version>0.6.0</redmic.test-utils.version>
		<!-- Añadir versión de la librería del tipo de vista elegida (elasticsearch/postgresql) -->
		<redmic.view-lib.version>0.6.0</redmic.view-lib.version>

		<!-- Versions of the OTHERS library used in the children -->

+5 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

	<parent>
		<groupId>es.redmic</groupId>
		<groupId>es.redmic.template</groupId>
		<artifactId>template</artifactId>
		<version>x.y.z</version>
	</parent>
@@ -15,6 +15,10 @@
	<name>template commands</name>
	<description>Template commands microservice</description>

	<properties>
		<redmic.commands-lib.version>0.6.0</redmic.commands-lib.version>
	</properties>

	<dependencies>

		<!-- Spring, Depende del microservicio. Se podría cambiar por REST, Socket... -->
+19 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

	<parent>
		<groupId>es.redmic.lib</groupId>
		<artifactId>libs</artifactId>
		<groupId>es.redmic.template</groupId>
		<artifactId>template</artifactId>
		<version>x.y.z</version>
	</parent>

@@ -21,4 +21,21 @@
			<scope>provided</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<executions>
					<execution>
						<id>Jar Tests Package</id>
						<phase>package</phase>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
+6 −2
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

	<parent>
		<groupId>es.redmic</groupId>
		<artifactId>redmic</artifactId>
		<groupId>es.redmic.template</groupId>
		<artifactId>template</artifactId>
		<version>x.y.z</version>
	</parent>

@@ -15,6 +15,10 @@
	<name>template view</name>
	<description>Template view microservice</description>

	<properties>
		<redmic.view-lib.version>0.6.0</redmic.view-lib.version>
	</properties>

	<dependencies>

		<!-- Spring, Depende del microservicio. Se podría cambiar por REST, Socket... -->