<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">

	<properties>
		<spring.framework>3.0.4.RELEASE</spring.framework>
		<hibernate.version>3.2.4.sp1</hibernate.version>
		<hibernate.annotation.version>3.3.0.ga</hibernate.annotation.version>
		
		<!-- repositorio de releases -->
		<distributionManagement.repository.releases.id>
			releases
		</distributionManagement.repository.releases.id>
		
		<distributionManagement.repository.releases.url>
			https://repository.jboss.org/nexus/content/repositories/releases/
		</distributionManagement.repository.releases.url>
		
		<!-- repositorio de snapshots-->
		<distributionManagement.repository.snapshots.id>
			snapshots
		</distributionManagement.repository.snapshots.id>
		
		<distributionManagement.repository.snapshots.url>
			https://repository.jboss.org/nexus/content/repositories/snapshots/
		</distributionManagement.repository.snapshots.url>



	</properties>

	<modelVersion>4.0.0</modelVersion>

	<groupId>com.jartifacts</groupId>
	<artifactId>jartifacts-genericService</artifactId>
	<version>1.0.0</version>
	<packaging>jar</packaging>

	<name>genericService</name>
  	<url>http://www.jartifacts.com</url>

	<!-- para deploy en server-->
	<distributionManagement>
		<repository>
			<id>${distributionManagement.repository.releases.id}</id>
			<url>${distributionManagement.repository.releases.url}</url>
		</repository>
	 
		<snapshotRepository>
			<id>${distributionManagement.repository.snapshots.id}</id>
			<url>${distributionManagement.repository.snapshots.url}</url>
		</snapshotRepository>
	</distributionManagement>
	<build>
		<pluginManagement>
			<plugins>
				<plugin> 
					<groupId>org.apache.maven.plugins</groupId> 
					<artifactId>maven-compiler-plugin</artifactId> 
					<configuration> 
						<source>1.6</source> 
						<target>1.6</target> 
						<debug>true</debug>
						<showDeprecation>true</showDeprecation>
						<showWarnings>true</showWarnings>
						<optimize>false</optimize>
					</configuration> 
				</plugin>   
			</plugins>
		</pluginManagement>
	</build>

	
  	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>org.springframework.context</artifactId>
			<version>3.0.4.RELEASE</version>
		</dependency>		
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>org.springframework.orm</artifactId>
			<version>3.0.4.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>org.springframework.core</artifactId>
			<version>3.0.4.RELEASE</version>
		</dependency>		
		<dependency>
		   <groupId>org.springframework</groupId>
		   <artifactId>org.springframework.test</artifactId>
			<version>3.0.4.RELEASE</version>
			<scope>test</scope>
		</dependency>
        
		<dependency>
        	<groupId>org.springframework</groupId>
        	<artifactId>spring-hibernate3</artifactId>
        	<version>2.0.8</version>
        	<type>jar</type>
			<scope>test</scope>
        </dependency>
		
		<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.5.2</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.5.2</version>
        </dependency>
		

		<dependency> 
			<groupId>commons-configuration</groupId> 
			<artifactId>commons-configuration</artifactId> 
			<version>1.6</version> 
		</dependency> 

	    <dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate</artifactId>
			<version>3.2.4.sp1</version>
			<scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>asm</groupId>
                    <artifactId>asm</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>asm</groupId>
                    <artifactId>asm-attrs</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>cglib</groupId>
                    <artifactId>cglib</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

		<dependency>
		    <groupId>org.hibernate</groupId>
		    <artifactId>hibernate-annotations</artifactId>
			<version>3.3.0.ga</version>
			<scope>test</scope>
		</dependency>
		
		<dependency>
		    <groupId>org.hibernate</groupId>
		    <artifactId>hibernate-commons-annotations</artifactId>
			<version>3.3.0.ga</version>
			<scope>test</scope>
		</dependency>

		<!-- POOL -->
        <dependency>
        	<groupId>c3p0</groupId>
        	<artifactId>c3p0</artifactId>
        	<version>0.9.1.2</version>
        	<type>jar</type>
			<scope>test</scope>
        </dependency>
        
		<dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib-nodep</artifactId>
            <version>2.1_3</version>
			<scope>test</scope>
        </dependency>
        
		<dependency>
		  <groupId>hsqldb</groupId>
		  <artifactId>hsqldb</artifactId>
		  <version>1.8.0.2</version>
			<scope>test</scope>
		</dependency>
		
		<dependency>
			<groupId>com.jartifacts</groupId>
			<artifactId>jartifacts-genericDao</artifactId>
			<version>1.0.2</version>
		</dependency>		

		<dependency>
			<groupId>org.jasypt</groupId>
			<artifactId>jasypt</artifactId>
			<version>1.6</version>
		</dependency>

  	</dependencies>
		
</project>
