<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>
    <parent>
        <groupId>org.jenkins-ci.plugins</groupId>
        <artifactId>plugin</artifactId>
        <version>1.410</version>
    </parent>

	<groupId>org.jvnet.hudson.plugins</groupId>
	<artifactId>postbuild-task</artifactId>
	<packaging>hpi</packaging>
	<name>Hudson Post build task</name>
	<version>1.9-SNAPSHOT</version>

	<description>This plugin allows the user to execute a shell/batch task depending on the build log output.Java regular expression are allowed. If the string matches anywhere in the build log output, the script will execute.</description>
	<url>http://wiki.hudson-ci.org/display/HUDSON/Post+build+task</url>

	<developers>
		<developer>
			<id>shinodkm</id>
			<name>Shinod Mohandas</name>
			<email>shinodkm@gmail.com</email>
			<organization>Ushus Technologies</organization>
			<organizationUrl>http://www.ushustech.com/</organizationUrl>
			<timezone>+5.30</timezone>
			<roles>
				<role>Software Engineer</role>
			</roles>
		</developer>
                <developer>
                        <id>castorpilot</id>
                        <name>Fred</name>
                        <email>castorpilot@gmail.com</email>
                </developer>
	</developers>
	<organization>
		<name>Ushus Technologies</name>
		<url>http://www.ushustech.com</url>
	</organization>
	<build>
	  <pluginManagement>
	    <plugins>
	      <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
	      <plugin>
	        <groupId>org.eclipse.m2e</groupId>
	        <artifactId>lifecycle-mapping</artifactId>
	        <version>1.0.0</version>
	        <configuration>
	          <lifecycleMappingMetadata>
	            <pluginExecutions>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>org.jvnet.localizer</groupId>
	                  <artifactId>maven-localizer-plugin</artifactId>
	                  <versionRange>[1.12,)</versionRange>
	                  <goals>
	                    <goal>generate</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>org.jenkins-ci.tools</groupId>
	                  <artifactId>maven-hpi-plugin</artifactId>
	                  <versionRange>[1.67,)</versionRange>
	                  <goals>
	                    <goal>test-hpl</goal>
	                    <goal>insert-test</goal>
	                    <goal>resolve-test-dependencies</goal>
	                    <goal>apt-compile</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>org.apache.maven.plugins</groupId>
	                  <artifactId>maven-enforcer-plugin</artifactId>
	                  <versionRange>[1.0,)</versionRange>
	                  <goals>
	                    <goal>display-info</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>org.kohsuke</groupId>
	                  <artifactId>access-modifier-checker</artifactId>
	                  <versionRange>[1.0,)</versionRange>
	                  <goals>
	                    <goal>enforce</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>org.codehaus.groovy.maven</groupId>
	                  <artifactId>gmaven-plugin</artifactId>
	                  <versionRange>[1.0-rc-5,)</versionRange>
	                  <goals>
	                    <goal>testCompile</goal>
	                    <goal>generateTestStubs</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	              <pluginExecution>
	                <pluginExecutionFilter>
	                  <groupId>com.cloudbees</groupId>
	                  <artifactId>maven-license-plugin</artifactId>
	                  <versionRange>[1.3,)</versionRange>
	                  <goals>
	                    <goal>process</goal>
	                  </goals>
	                </pluginExecutionFilter>
	                <action>
	                  <ignore></ignore>
	                </action>
	              </pluginExecution>
	            </pluginExecutions>
	          </lifecycleMappingMetadata>
	        </configuration>
	      </plugin>
	    </plugins>
	  </pluginManagement>
	</build>
</project>
