2024-12-13 16:32:43 +08:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>net.risesoft</groupId>
|
|
|
|
<artifactId>y9-digitalbase</artifactId>
|
|
|
|
<version>v9.6.8-SNAPSHOT</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
<artifactId>y9-code-generator</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<version>${revision}</version>
|
2024-12-13 18:02:50 +08:00
|
|
|
<description>RiseSoft/CodeGenerator parent pom.xml file</description>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU General Public License (GPL) version 3.0</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2024-12-13 16:32:43 +08:00
|
|
|
|
|
|
|
<properties>
|
2024-12-13 18:02:50 +08:00
|
|
|
<gitee.url>https://gitee.com/risesoft-y9/y9-code-generator</gitee.url>
|
|
|
|
<gitee.connection>scm:git:https://gitee.com/risesoft-y9/y9-code-generator.git</gitee.connection>
|
|
|
|
<gitee.developerConnection>scm:git:https://gitee.com/risesoft-y9/y9-code-generator.git</gitee.developerConnection>
|
|
|
|
|
2024-12-13 16:32:43 +08:00
|
|
|
<revision>v9.6.8-SNAPSHOT</revision>
|
|
|
|
</properties>
|
|
|
|
|
2024-12-13 18:02:50 +08:00
|
|
|
<scm>
|
|
|
|
<url>${gitee.url}</url>
|
|
|
|
<connection>${gitee.connection}</connection>
|
|
|
|
<developerConnection>${gitee.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
2024-12-13 16:32:43 +08:00
|
|
|
<modules>
|
|
|
|
<module>risenet-y9boot-webapp-code</module>
|
|
|
|
</modules>
|
|
|
|
|
2024-12-13 18:02:50 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>y9-internet-repo</id>
|
|
|
|
<url>https://svn.youshengyun.com:9900/nexus/repository/maven-public/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<!-- <updatePolicy>always</updatePolicy> -->
|
|
|
|
<!-- always,daily(default),interval:XXX,never -->
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>deploy-maven-central</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2024-12-13 16:32:43 +08:00
|
|
|
</project>
|