代码拉取完成,页面将自动刷新
<?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>io.gitee.ygypc</groupId>
<artifactId>ygypc-auto</artifactId>
<packaging>pom</packaging>
<version>1.0.2</version>
<modules>
<module>tulang-auto-dubbo-spi</module>
<module>tulang-auto-dubbo-example</module>
<module>tulang-auto-factory</module>
<module>tulang-auto-example</module>
</modules>
<properties>
<maven-source.version>3.0.1</maven-source.version>
<maven-compiler.version>3.3</maven-compiler.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<auto-service.version>1.1.1</auto-service.version>
</properties>
<name>${project.groupId}:${project.artifactId}</name>
<description>
一系列自动化生成工具集
</description>
<url>https://gitee.com/ygypc/ygypc-auto.git</url>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.gitee.ygypc</groupId>
<artifactId>tulang-auto-dubbo-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ygypc</groupId>
<artifactId>tulang-auto-dubbo-example</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ygypc</groupId>
<artifactId>tulang-auto-factory</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ygypc</groupId>
<artifactId>tulang-auto-example</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service-annotations</artifactId>
<version>${auto-service.version}</version>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${auto-service.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.inject</groupId>
<artifactId>jakarta.inject-api</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>javawriter</artifactId>
<version>2.5.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- 配置GPG插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifactId</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central_sonatype</publishingServerId>
<waitUntil>uploaded</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<skip>true</skip>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source.version}</version>
<configuration>
<attach>true</attach>
<!--<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>-->
</configuration>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
<!-- <executions>
<execution>
<goals>
<goal>update-dependency</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>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>central_sonatype</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>central_sonatype</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Rubens</name>
<email>ygypc_spring@foxmail.com</email>
<organization>Rubens</organization>
<organizationUrl>https://gitee.com/ygypc/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/ygypc/ygypc-auto.git</connection>
<developerConnection>scm:git:git@gitee.com:ygypc/ygypc-auto.git</developerConnection>
<url>https://gitee.com/ygypc/ygypc-auto.git</url>
</scm>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。