<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">
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.force.api</groupId>
    <artifactId>force-partner-api</artifactId>
    <packaging>jar</packaging>
    <version>22.0.0</version>
    <name>force-partner-api</name>
    <description>Force.com Web Service Connector</description>
    <url>http://www.force.com/</url>
    <licenses>
        <license>
            <name>BSD License (FreeBSD)</name>
            <url>LICENSE.md</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:git://github.com/forcedotcom/wsc.git</connection>
        <developerConnection>scm:git:git://github.com/forcedotcom/wsc.git</developerConnection>
        <url>http://github.com/forcedotcom/wsc</url>
    </scm>
    <developers><!-- see mailing list --></developers>
    <mailingLists>
        <mailingList>
            <name>Database.com SDK for Java Issues</name>
            <archive>https://github.com/forcedotcom/java-sdk/issues?state=closed</archive>
            <subscribe>https://github.com/forcedotcom/java-sdk/toggle_watch</subscribe>
            <unsubscribe>https://github.com/forcedotcom/java-sdk/toggle_watch</unsubscribe>
            <post>https://github.com/forcedotcom/java-sdk/issues/new</post>
        </mailingList>
    </mailingLists>

    <dependencies>
	<dependency>
            <groupId>com.force.api</groupId>
	    <artifactId>force-wsc</artifactId>
	    <version>22.0.0</version>
	</dependency>
    </dependencies>

    <build>
	<plugins>
		<plugin>
			<artifactId>maven-compiler-plugin</artifactId>
			<configuration>
				<source>1.6</source>
				<target>1.6</target>
			</configuration>
		</plugin>
		<plugin>
			<groupId>org.codehaus.mojo</groupId>
			<artifactId>exec-maven-plugin</artifactId>
			<version>1.1</version>
			<executions>
				<execution>
					<id>generate-source-from-jar</id>
					<phase>generate-sources</phase>
					<configuration>
						<executable>bash</executable>
						<arguments>
							<argument>generate.sh</argument>
						</arguments>
					</configuration>
					<goals>
						<goal>exec</goal>
					</goals>
				</execution>
			</executions>
		</plugin> 
	</plugins> 
    </build>
</project>
