addplus_module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addplus9</groupId> <artifactId>addplus_module</artifactId> <version>1.1.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.addplus9</groupId> <artifactId>addplus_module</artifactId> <name>addplus_module</name> <version>1.1.0</version> <packaging>pom</packaging> <description>基础框架模块</description> <url>http://www.addplus9.com</url> <modules> <module>addplus_core</module> <module>addplus_connector</module> <module>addplus_oss</module> <module>addplus_security</module> <module>addplus_security_service</module> <module>addplus_action</module> <module>addplus_action_dubbo</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <spring-boot.version>2.1.8.RELEASE</spring-boot.version> <dubbo.spring.boot.version>2.7.1</dubbo.spring.boot.version> <java.version>1.8</java.version> <addplus.version>1.0.0-SNAPSHOT</addplus.version> </properties> <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>http://lanyue.addplus9.com:50012/zhangjiehang/addplus_module</url> <connection>http://lanyue.addplus9.com:50012/zhangjiehang/addplus_module.git</connection> <developerConnection>scm:http:http://lanyue.addplus9.com:50012/zhangjiehang/addplus_module.git </developerConnection> </scm> <developers> <developer> <name>zhangjh</name> <email>zhangjh@addplus9.com</email> <organization>addplus9</organization> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <!-- 设置源文件编码方式及JDK编译版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> </plugins> </build> <profiles> <!--maven中央仓库,命令 mvn clean deploy -P release--> <profile> <id>release</id> <build> <plugins> <!-- 设置源文件编码方式及JDK编译版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- SOURCE --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <!--GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> <!-- 阿里云效maven仓库,命令:mvn clean deploy -P aliyun-maven--> <profile> <id>aliyun-maven</id> <distributionManagement> <repository> <id>rdc-releases</id> <url>https://repo.rdc.aliyun.com/repository/103801-release-VB12AB/</url> </repository> <snapshotRepository> <id>rdc-snapshots</id> <url>https://repo.rdc.aliyun.com/repository/103801-snapshot-cvEzCe/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <!-- 直接使用maven的deploy 上传--> <distributionManagement> <repository> <id>maven-public</id> <name>maven-public</name> <url>http://192.168.1.135:8089/repository/addplus-maven/</url> </repository> <snapshotRepository> <id>maven-snapshots</id> <url>http://192.168.1.135:8089/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> </project>