<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.mule.tooling.tools</groupId>
	<artifactId>tooling-runtimes-maven-plugins</artifactId>
	<packaging>maven-plugin</packaging>
	<version>2.0.2</version>
	<name>tooling-runtimes-maven-plugins</name>
	
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
			<plugin>
		       <groupId>org.apache.maven.plugins</groupId>
		       <artifactId>maven-plugin-plugin</artifactId>
		       <version>3.6.0</version>
		       <configuration>
		         <!-- <goalPrefix>maven-archetype-plugin</goalPrefix> -->
		         <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
		       </configuration>
		       <executions>
		         <execution>
		           <id>mojo-descriptor</id>
		           <goals>
		             <goal>descriptor</goal>
		           </goals>
		         </execution>
		         <execution>
		           <id>help-goal</id>
		           <goals>
		             <goal>helpmojo</goal>
		           </goals>
		         </execution>
		       </executions>
		     </plugin>
		</plugins>
		
		
	</build>

	<dependencies>
		 <dependency>
		     <groupId>org.apache.maven.plugin-tools</groupId>
		     <artifactId>maven-plugin-annotations</artifactId>
		     <version>3.6.0</version>
		     <scope>provided</scope>
		   </dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>org.mule.tooling</groupId>
			<artifactId>mule-tooling-bootstrap</artifactId>
			<version>1.2.2-SNAPSHOT</version>
		</dependency>
	</dependencies>


	  <distributionManagement>
        <repository>
            <id>mulesoft-releases</id>
            <name>MuleSoft Repository</name>
            <url>https://repository-master.mulesoft.org/releases</url>
        </repository>
        <snapshotRepository>
            <id>mulesoft-snapshots</id>
            <name>MuleSoft Snapshot Repository</name>
            <url>https://repository-master.mulesoft.org/snapshots</url>
            <uniqueVersion>false</uniqueVersion>
        </snapshotRepository>
    </distributionManagement>
    
	<repositories>
		<repository>
			<id>mulesoft-releases</id>
			<name>Nexus Repository</name>
			<url>http://repository-master.mulesoft.org/nexus/content/repositories/releases/</url>
		</repository>
		<repository>
			<id>mule-ee-releases</id>
			<name>MuleEE Releases Repository</name>
			<url>https://repository-master.mulesoft.org/nexus/content/repositories/ci-releases/</url>
		</repository>
		<repository>
			<id>mulesoft-snapshots</id>
			<name>Nexus Snapshots Repository</name>
			<url>http://repository-master.mulesoft.org/nexus/content/repositories/snapshots/</url>
		</repository>
	</repositories>
</project>