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

	<properties>
		<!-- 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-object</artifactId>
  <packaging>jar</packaging>
  <name>jartifacts-object</name>
  <version>1.1.0</version>
  
  <url>http://www.jartifacts.com</url>
	<build>
        <finalName>jartifacts-object</finalName>
        <pluginManagement>
			<plugins>
	            <plugin>  
            	    <artifactId>maven-compiler-plugin</artifactId>  
        	        <configuration>  
    	                <source>1.6</source>  
	                    <target>1.6</target>  
                    	<encoding>UTF-8</encoding>  
						<debug>true</debug>
						<showDeprecation>true</showDeprecation>
						<showWarnings>true</showWarnings>
						<optimize>false</optimize>
                	</configuration>  
            	</plugin> 
			</plugins>
		</pluginManagement>
	</build>
	
	<!-- 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>

	<!--dependencies-->
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
		  <groupId>com.jartifacts</groupId>
		  <artifactId>jartifacts-propertyManager</artifactId>
		  <version>1.0.1</version>
		</dependency>
	</dependencies>
	
</project>
