dactiv-base-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.dactiv</groupId>
<artifactId>dactiv-base-framework</artifactId>
<version>1.1.0.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>com.github.dactiv</groupId>
<artifactId>dactiv-base-framework</artifactId>
<version>1.1.0.RELEASE</version>
<name>base web framework project</name>
<packaging>pom</packaging>
<description>base-framework is a base framework based on spring,hibernate,spring mvc,shiro.</description>
<url>http://dactiv.github.com/base-framework</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<issueManagement>
<system>github</system>
<url>https://github.com/dactiv/base-framework/issues</url>
</issueManagement>
<developers>
<developer>
<id>dactiv</id>
<name>Maurice Chen</name>
<email>es.chenxiaobo@gmail.com</email>
<timezone>+8</timezone>
</developer>
</developers>
<scm>
<url>https://github.com/dactiv/base-framework.git</url>
<connection>scm:git:ssh://git@github.com:dactiv/base-framework.git</connection>
<developerConnection>scm:git:ssh://git@github.com:dactiv/base-framework.git</developerConnection>
<tag>v1.1.0.RELEASE</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
</properties>
<modules>
<module>dactiv-parent</module>
<module>dactiv-common</module>
<module>dactiv-orm</module>
<module>showcase/base-curd</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<autoversionsubmodules>true</autoversionsubmodules>
<localCheckout>true</localCheckout>
<arguments>-Psonatype-oss-release</arguments>
<tagNameFormat>v@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>