<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>com.gzsolartech</groupId>
  <artifactId>smartformsAPIUI</artifactId>
  <packaging>jar</packaging>
  <version>0.0.2</version>
  <name>smartformsAPIUI Maven Webapp</name>
  <url>http://maven.apache.org</url>
  
  <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
	 <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <tag>master</tag>
        <url>https://gitee.com/solarpsi/smartformsjar.git</url>
        <connection>scm:git:git@gitee.com:solarpsi/smartformsjar.git</connection>
        <developerConnection>scm:git:git@gitee.com:solarpsi/smartformsjar.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <name>solartech</name>
            <email>smartforms@gzsolartech.com</email>
            <organization>solartech</organization>
        </developer>
    </developers>
  
  
  <dependencies>
   
    
<!--     <dependency>
			<groupId>smartforms_toolkit</groupId>
			<artifactId>smartforms_toolkit</artifactId>
			<version>1.0</version>
			<scope>system</scope>
			本地jar的路径,相对或者绝对都可以
			<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/smartforms_toolkit.jar</systemPath>
		</dependency> -->
    
  </dependencies>
  
  <profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-release-plugin</artifactId>
  <version>2.5.3</version>
  <configuration>
    <autoVersionSubmodules>true</autoVersionSubmodules>
    <useReleaseProfile>false</useReleaseProfile>
    <releaseProfiles>release</releaseProfiles>
    <goals>deploy</goals>
  </configuration>
</plugin>


<!-- Javadoc -->
<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>
<!-- GPG -->
<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>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
  
  <build>
    <finalName>smartformsAPIUI</finalName>
  </build>
</project>
