<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>

	<parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
  <groupId>cn.zongkuiy</groupId>
  <artifactId>menuconsole</artifactId>
  <version>0.0.1</version>
  <packaging>jar</packaging>

  <name>menuconsole</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <licenses>
        <license>
            <name>MIT License</name>
            <url>https://opensource.org/licenses/mit-license/</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <tag>master</tag>
        <url>git@github.com:zongkuiy/menuconsole.git</url>
        <connection>scm:git:git@github.com:zongkuiy/menuconsole.git</connection>
        <developerConnection>scm:git:git@github.com:zongkuiy/menuconsole.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <name>zongkuiy</name>
            <email>yanzongkui@163.com</email>
            <organization></organization>
        </developer>
    </developers>
     <profiles>

       <profile>
           <id>release</id>
           <build>
              <plugins>
                  <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-source-plugin</artifactId>
                     <version>2.2.1</version>
                     <executions>
                         <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>jar-no-fork</goal>
                            </goals>
                         </execution>
                     </executions>
                  </plugin>
                  <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
                     <version>2.9.1</version>
                     <executions>
                         <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                         </execution>
                     </executions>
                  </plugin>
                  <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-gpg-plugin</artifactId>
                     <version>1.5</version>
                     <executions>
                         <execution>
                            <phase>verify</phase>
                            <goals>
                                <goal>sign</goal>
                            </goals>
                         </execution>
                     </executions>
                  </plugin>
              </plugins>
           </build>
           <distributionManagement>
              <snapshotRepository>
                  <id>sonatype</id>
                  <url>
                     https://oss.sonatype.org/content/repositories/snapshots/
                  </url>
              </snapshotRepository>
              <repository>
                  <id>sonatype</id>
                  <url>
                     https://oss.sonatype.org/service/local/staging/deploy/maven2/
                  </url>
              </repository>
           </distributionManagement>
       </profile>
    </profiles>
</project>
