examples-1.2.0.pom

Checksums

MD5 0302fb599bb51135e7da1af582d03cdb
SHA1 3580c5ad3a4ef649d605dee5b2541415d0c55aca
SHA256 774325dce88fb2a23c87a19d1ffc5326c930d576ab10ee3835c4988c5956cacd
SHA512 28f2f4e74e579e6093fef2467641f1e2b0e84123e6c22067a64141c82149698d286930e8819fe00b32d8c02f85e43ed426fbe823f44819b901bd822726d1c881

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.0</version>
		<relativePath>../pom.xml</relativePath>
	</parent>

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

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

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

		<dependency>
			<groupId>org.eqasim</groupId>
			<artifactId>core</artifactId>
			<version>1.2.0</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>