framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>store.kalvan.framework</groupId>
<artifactId>framework</artifactId>
<version>1.4</version>
</dependency><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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>store.kalvan.framework</groupId>
<artifactId>framework</artifactId>
<version>1.4</version>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<!-- 这里的id必须要和全局配置中的release id 一致 -->
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<!-- 如果希望发布后自动执行close和release操作,此处可以调整为true -->
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- 编译 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!--配置生成Javadoc包-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<aggregate>true</aggregate>
<charset>${project.build.sourceEncoding}</charset>
<docencoding>${project.build.sourceEncoding}</docencoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成java source.jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成asc 校验文件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<!-- 必须和配置中的gpg校验id一致 -->
<id>nexus</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<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>
<modules>
<!-- pom -->
<module>maven-client-parent</module>
<!-- 基础组件-日志 -->
<module>kalvan-log-slf4j</module>
<!-- 基础组件-redis-->
<module>kalvan-redis</module>
<!-- 基础组件-mq-->
<module>kalvan-mq-rocketmq</module>
<!-- 基础组件-job -->
<module>kalvan-core-job</module>
<!-- 核心开发依赖-接口开发(统一异常和返回) -->
<module>kalvan-core-client</module>
<!-- 核心开发框架 -->
<module>kalvan-core</module>
<!-- 核心开发依赖db -->
<module>kalvan-core-db</module>
<!-- 核心开发依赖web -->
<module>kalvan-core-web</module>
<!-- 系统提供服务(日志、字典) -->
<module>kalvan-system-client</module>
</modules>
<scm>
<tag>master</tag>
<url>https://gitee.com/spring_thunder/kalvan-framework.git</url>
<connection>https://gitee.com/spring_thunder/kalvan-framework.git</connection>
<developerConnection>kalvan.store</developerConnection>
</scm>
<developers>
<developer>
<name>kalvan</name>
<email>chenlian9111@163.com</email>
<url>https://kalvan.store</url>
</developer>
</developers>
</project>