<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">
  <modelVersion>4.0.0</modelVersion>

  <groupId>c10n</groupId>
  <artifactId>c10n-core</artifactId>
  <version>1.1</version>
  <packaging>jar</packaging>

  <name>c10n-core</name>
  <url>https://github.com/rodionmoiseev/c10n</url>
  <description>
  A Java library, focused on making internationalisation more modular, easier to evolve and maintain,
  robust-to-change and IDE-friendly without excess of external tools.
  </description>
  
  <licenses>
  
  <license>  
    <name>The Apache Software License, Version 2.0</name>
    <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    <distribution>repo,manual</distribution>	
  </license>

  </licenses>
  
  <developers>
      
    <developer>
      <id>rodionmoiseev</id>
      <name>Rodion Moiseev</name>
      <email>rodion.moiseev+github@gmail.com</email>
      <roles>
        <role>creator</role>
        <role>contact</role>
      </roles>
    </developer>
    
  </developers>
  
  <scm>
    <connection>scm:git:https://github.com/rodionmoiseev/c10n</connection>
    <developerConnection>scm:git:https://github.com/rodionmoiseev/c10n</developerConnection>
    <url>https://github.com/rodionmoiseev/c10n</url>
  </scm>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <build>
    <plugins>
        
          <!-- Attach Source to build artifact --> 
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          
          <!-- Attach Javadoc to build artifact --> 
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>          
    </plugins>
  </build>


  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.3.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.collections</groupId>
      <artifactId>google-collections</artifactId>
      <version>1.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
