<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>jboss</groupId>
	<artifactId>mobicents-ra-mavenization-archetype</artifactId>
	<version>1.0-alpha-3</version>
	
	<name>Mobicents RA Mavenization Archetype</name>
	<description>An archetype for slee resource adaptor mavenization.</description>

	<organization>
		<name>MobiCents</name>
		<url>http://www.mobicents.org</url>
	</organization>

	<issueManagement>
		<url>https://mobicents.dev.java.net/servlets/ProjectIssues</url>
	</issueManagement>

	<inceptionYear>2007</inceptionYear>

	<repositories>
		<repository>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
			<id>dev.java.net</id>
			<name>dev.java.net</name>
			<url>http://download.java.net/maven/2/</url>
			<layout>default</layout>
		</repository>
	</repositories>

	<licenses>
		<license>
			<name>
				GNU Library or Lesser General Public License (LGPL)
			</name>
			<url>http://www.gnu.org/licenses/lgpl.txt</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Michele La Porta</name>
			<email>michele.laporta[at]gmail.com</email>
		</developer>
	</developers>

	<scm>
		<connection>scm:svn:https://mobicents-svn.dev.java.net/svn/mobicents-svn/sandbox/plugins/mobicents-ra-mavenization-archetype/tags/mobicents-ra-mavenization-archetype-1.0-alpha-3</connection>
		<developerConnection>scm:svn:https://mobicents-svn.dev.java.net/svn/mobicents-svn/sandbox/plugins/mobicents-ra-mavenization-archetype/tags/mobicents-ra-mavenization-archetype-1.0-alpha-3</developerConnection>
		<url>https://mobicents-svn.dev.java.net/svn/mobicents-svn/sandbox/plugins/mobicents-ra-mavenization-archetype/tags/mobicents-ra-mavenization-archetype-1.0-alpha-3</url>
	</scm>

	<build>
		<extensions>
			<extension>
				<groupId>org.jvnet.wagon-svn</groupId>
				<artifactId>wagon-svn</artifactId>
				<version>RELEASE</version>
			</extension>
		</extensions>
	
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<downloadSources>false</downloadSources>
				</configuration>
			</plugin>
			
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-clean-plugin</artifactId>
				<version>2.1.1</version>
				<configuration>
					<downloadSources>false</downloadSources>
				</configuration>
			</plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.0-beta-4</version>
                <configuration>
                    <tagBase>
                        https://mobicents-svn.dev.java.net/svn/mobicents-svn/sandbox/plugins/mobicents-ra-mavenization-archetype/tags
                    </tagBase>
                </configuration>
            </plugin>
            
			<!-- IDE -->            
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<downloadSources>true</downloadSources>
				</configuration>
			</plugin>
            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-idea-plugin</artifactId>
                 <version>2.0</version>
                 <configuration>
                     <downloadSources>true</downloadSources>
                     <!--<downloadJavadocs>true</downloadJavadocs>-->
                     <dependenciesAsLibraries>true</dependenciesAsLibraries>
                 </configuration>
             </plugin>

             <!--Site -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-site-plugin</artifactId>
                 <version>2.0-beta-5</version>
             </plugin>
            
		</plugins>
		
	</build>

	<reporting>
		<plugins>
			<!-- Note: It's not possible to configure reporting plugins in pluginManagement in m2.0.4 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.0.1</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.3</version>
			</plugin>
		</plugins>
	</reporting>

	<distributionManagement>
		<repository>
			<id>java.net-m2-repository</id>
			<url>java-net:/maven2-repository/trunk/www/repository/</url>
		</repository>
		<snapshotRepository>
			<id>java.net-m2-repository</id>
			<url>java-net:/maven2-repository/trunk/www/repository/</url>
		</snapshotRepository>
	</distributionManagement>

	<properties>
		<maven.test.skip>true</maven.test.skip>
	</properties>

</project>