mirror of
https://gitee.com/makunet/maku-generator.git
synced 2026-05-06 16:50:09 +08:00
179 lines
7.8 KiB
XML
179 lines
7.8 KiB
XML
<?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>net.maku</groupId>
|
|
<artifactId>maku-generator</artifactId>
|
|
<version>3.2.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>maku-generator</name>
|
|
<description>maku generator</description>
|
|
<url>https://gitee.com/makunet/maku-generator</url>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.5.5</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>maku-generator-core</module>
|
|
<module>maku-generator-boot-starter</module>
|
|
<module>maku-generator-server</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>17</java.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>public</id>
|
|
<name>阿里云公共仓库</name>
|
|
<url>https://maven.aliyun.com/repository/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>oracle-public</id>
|
|
<url>https://maven.oracle.com/public</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>阿里云公共仓库</name>
|
|
<url>https://maven.aliyun.com/repository/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>babamu</name>
|
|
<email>babamu@126.com</email>
|
|
<organization>MAKU</organization>
|
|
<organizationUrl>https://maku.net</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>https://github.com/makunet/maku-generator.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com:makunet/maku-generator.git</developerConnection>
|
|
<url>https://github.com/makunet/maku-generator</url>
|
|
</scm>
|
|
|
|
<!-- <profiles>-->
|
|
<!-- <profile>-->
|
|
<!-- <id>release</id>-->
|
|
<!-- <activation>-->
|
|
<!-- <activeByDefault>true</activeByDefault>-->
|
|
<!-- </activation>-->
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.sonatype.central</groupId>-->
|
|
<!-- <artifactId>central-publishing-maven-plugin</artifactId>-->
|
|
<!-- <version>0.8.0</version>-->
|
|
<!-- <extensions>true</extensions>-->
|
|
<!-- <configuration>-->
|
|
<!-- <publishingServerId>central</publishingServerId>-->
|
|
<!-- <autoPublish>true</autoPublish>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-release-plugin</artifactId>-->
|
|
<!-- <version>2.5.3</version>-->
|
|
<!-- <configuration>-->
|
|
<!-- <autoVersionSubmodules>true</autoVersionSubmodules>-->
|
|
<!-- <useReleaseProfile>false</useReleaseProfile>-->
|
|
<!-- <releaseProfiles>release</releaseProfiles>-->
|
|
<!-- <goals>deploy</goals>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- <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</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <charset>UTF-8</charset>-->
|
|
<!-- <encoding>UTF-8</encoding>-->
|
|
<!-- <docencoding>UTF-8</docencoding>-->
|
|
<!-- </configuration>-->
|
|
<!-- <version>2.9.1</version>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>attach-javadocs</id>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>jar</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <additionalparam>-Xdoclint:none</additionalparam>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-gpg-plugin</artifactId>-->
|
|
<!-- <version>1.6</version>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>sign-artifacts</id>-->
|
|
<!-- <phase>verify</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>sign</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-jar-plugin</artifactId>-->
|
|
<!-- <version>${maven-jar-plugin.version}</version>-->
|
|
<!-- <configuration>-->
|
|
<!-- <archive>-->
|
|
<!-- <manifest>-->
|
|
<!-- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>-->
|
|
<!-- </manifest>-->
|
|
<!-- </archive>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
<!-- <distributionManagement>-->
|
|
<!-- <snapshotRepository>-->
|
|
<!-- <id>central</id>-->
|
|
<!-- <url>https://central.sonatype.com/repository/maven-snapshots/</url>-->
|
|
<!-- </snapshotRepository>-->
|
|
<!-- <repository>-->
|
|
<!-- <id>central</id>-->
|
|
<!-- <url>https://central.sonatype.org/publish/publish-portal-maven/</url>-->
|
|
<!-- </repository>-->
|
|
<!-- </distributionManagement>-->
|
|
<!-- </profile>-->
|
|
<!-- </profiles>-->
|
|
</project>
|