cdp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.fosin</groupId>
<artifactId>cdp</artifactId>
<version>1.0.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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.fosin</groupId>
<artifactId>cdp</artifactId>
<packaging>pom</packaging>
<version>1.0.0.RELEASE</version>
<modules>
<module>cdp-cache</module>
<module>cdp-core</module>
<module>cdp-mvc</module>
<module>cdp-oauth2</module>
<module>cdp-swagger</module>
<module>cdp-utils</module>
</modules>
<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>
<url>https://github.com/fosin/cdp</url>
<connection>git@github.com:fosin/cdp.git</connection>
<developerConnection>http://fosin.github.com</developerConnection>
</scm>
<developers>
<developer>
<name>fosin</name>
<email>28860823@qq.com</email>
<url>http://fosin.github.com</url>
</developer>
</developers>
<properties>
<cdp.version>${project.version}</cdp.version>
<cdp.groupId>${project.groupId}</cdp.groupId>
<java.version>8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<cdp-spring-boot.version>1.5.16.RELEASE</cdp-spring-boot.version>
<cdp-at>@</cdp-at>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${cdp-spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-utils</artifactId>
<version>${cdp.version}</version>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-core</artifactId>
<version>${cdp.version}</version>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-cache</artifactId>
<version>${cdp.version}</version>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-oauth2</artifactId>
<version>${cdp.version}</version>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-swagger</artifactId>
<version>${cdp.version}</version>
</dependency>
<dependency>
<groupId>${cdp.groupId}</groupId>
<artifactId>cdp-mvc</artifactId>
<version>${cdp.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!--SpringBoot插件-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- 资源文件拷贝插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<!--不过滤以下后缀的文件-->
<nonFilteredFileExtensions>
<nonFilteredFileExtension>keystore</nonFilteredFileExtension>
<nonFilteredFileExtension>html</nonFilteredFileExtension>
<nonFilteredFileExtension>js</nonFilteredFileExtension>
<nonFilteredFileExtension>css</nonFilteredFileExtension>
<nonFilteredFileExtension>ico</nonFilteredFileExtension>
<nonFilteredFileExtension>png</nonFilteredFileExtension>
<nonFilteredFileExtension>jpg</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
<!-- java编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- 源码插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<docencoding>UTF-8</docencoding>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>