examples-1.2.1.pom

Checksums

MD5 b27db09ddddb23ddd50e7d7589436400
SHA1 5a1a5b021053bbd6df5ab95a5ece1230dc0a9668
SHA256 c620b121a4ea5799080f674e63c080d9999120b1968230a305ae21514e8ccec6
SHA512 2c8c7fc6ac9f79eefd361a7ec612a6c511d10e27b1bc2dfdcca950426331d1221c683540d80e68609d591c5305698a25c437121fab599a7413b15847c1fb9cd5

POM

<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<artifactId>examples</artifactId>

	<parent>
		<groupId>org.eqasim</groupId>
		<artifactId>eqasim</artifactId>
		<version>1.2.1</version>
		<relativePath>../pom.xml</relativePath>
	</parent>

	<dependencies>
		<dependency>
			<groupId>org.eqasim</groupId>
			<artifactId>automated_vehicles</artifactId>
			<version>1.2.1</version>
		</dependency>

		<dependency>
			<groupId>org.eqasim</groupId>
			<artifactId>auckland</artifactId>
			<version>1.2.1</version>
		</dependency>

		<dependency>
			<groupId>org.eqasim</groupId>
			<artifactId>switzerland</artifactId>
			<version>1.2.1</version>
		</dependency>

		<dependency>
			<groupId>org.eqasim</groupId>
			<artifactId>core</artifactId>
			<version>1.2.1</version>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>standalone</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-shade-plugin</artifactId>
						<version>3.2.0</version>
						<executions>
							<execution>
								<phase>package</phase>
								<goals>
									<goal>shade</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>