Commit 3501330f authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade plugin para exportar parte de test a jar

parent bae0f0ee
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
@@ -123,8 +123,24 @@
			<type>test-jar</type>
  			<scope>test</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>
	<repositories>
		<repository>
			<id>central</id>