<?xml version="1.0"?><project>
  <parent>
    <artifactId>atlassian-base</artifactId>
    <groupId>com.atlassian.base</groupId>
    <version>1.3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.atlassian.netsuite</groupId>
  <artifactId>netsuite-client</artifactId>
  <name>Netsuite Client Project</name>
  <version>1.0</version>
  <description>The Netsuite client is a library that makes Netsuite SOAP interactions easier.</description>
  <inceptionYear>2003</inceptionYear>
  <organization>
    <name>Atlassian</name>
    <url>www.atlassian.com</url>
  </organization>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.1.3</version>
          <configuration>
            <argLine>-Djava.awt.headless=true -Xms256m -Xmx512m</argLine>
          </configuration>
        </plugin>
        <plugin>
          <groupId>com.atlassian.confluence</groupId>
          <artifactId>maven-confluence-plugin</artifactId>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-idea-plugin</artifactId>
        <version>2.1-atlassian-SNAPSHOT</version>
        <configuration>
          <jdkName>1.5</jdkName>
          <jdkLevel>1.5</jdkLevel>
          <dependenciesAsLibraries>true</dependenciesAsLibraries>
          <wildcardResourcePatterns>?*.properties;?*.xml;?*.xsl;?*.html;?*.dtd;?*.xsd;?*.tld;?*.gif;?*.png;?*.jpeg;?*.jpg;?*.vm;?*.css;?*.js</wildcardResourcePatterns>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>xfire-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>wsgen</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <package>com.atlassian.netsuite.client</package>
          <profile></profile>
          <binding></binding>
          <outputDirectory>${project.build.directory}/client</outputDirectory>
          <wsdls>
            <wsdl>https://webservices.netsuite.com/wsdl/v2_5_0/netsuite.wsdl</wsdl>
          </wsdls>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <repositories>
    <repository>
      <id>ibiblio</id>
      <name>ibiblio</name>
      <url>http://www.ibiblio.org/maven2</url>
    </repository>
    <repository>
      <snapshots>
        <updatePolicy>interval:30</updatePolicy>
      </snapshots>
      <id>atlassian-m2-repository</id>
      <name>Atlassian Maven 2.x Repository</name>
      <url>http://repository.atlassian.com/maven2</url>
    </repository>
    <repository>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots />
      <id>Maven Snapshots</id>
      <url>http://snapshots.maven.codehaus.org/maven2/</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <releases />
      <id>codehaus snapshot repository</id>
      <url>http://snapshots.repository.codehaus.org/</url>
    </pluginRepository>
    <pluginRepository>
      <releases />
      <snapshots>
        <updatePolicy>always</updatePolicy>
      </snapshots>
      <id>atlassian-m2-repository</id>
      <url>http://repository.atlassian.com/maven2/</url>
    </pluginRepository>
    <pluginRepository>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots />
      <id>Maven Snapshots</id>
      <url>http://snapshots.maven.codehaus.org/maven2/</url>
    </pluginRepository>
  </pluginRepositories>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.xfire</groupId>
      <artifactId>xfire-all</artifactId>
      <version>1.2.4</version>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>