73 Star 182 Fork 68

ada/adminstore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.17 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<parent>
<groupId>com.nbsaas.boot</groupId>
<artifactId>nbsaas-boot</artifactId>
<version>1.1.19-2024</version>
</parent>
<artifactId>adminstore-root</artifactId>
<packaging>pom</packaging>
<version>1.01</version>
<name>adminstore-root</name>
<url>https://github.com/cng1985/adminstore</url>
<description>一个简单的项目初始化模板</description>
<repositories>
<repository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<jodd.version>5.1.4</jodd.version>
<base.version>1.01</base.version>
<mybatis.version>3.5.16</mybatis.version>
<postgresql.version>42.3.1</postgresql.version>
<lombok.version>1.18.22</lombok.version>
<nb.boot.version>1.1.19-2024</nb.boot.version>
<nb.starter.version>1.1.10-2024</nb.starter.version>
<nb.data.version>1.0.6-2024</nb.data.version>
<nb.article.version>1.0.4-2024</nb.article.version>
<nb.task.version>1.0.3-2024</nb.task.version>
<nb.storage.version>1.0.6-2024</nb.storage.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>code-generator</module>
<module>resources</module>
<module>gates</module>
</modules>
<build>
<finalName>adminstore</finalName>
<plugins>
<!-- Maven Jetty Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
<meminitial>512m</meminitial>
<maxmem>1024m</maxmem>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.46.v20220331</version>
<configuration>
<webApp>
<contextPath>/web/</contextPath>
<descriptor>${project.basedir}/src/main/webapp/WEB_INF/web.xml</descriptor>
</webApp>
<httpConnector>
<port>8080</port>
</httpConnector>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>ada.young</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>https://github.com/cng1985/adminstore</url>
<connection>[email protected]:cng1985/adminstore.git</connection>
<developerConnection>[email protected]:cng1985/adminstore.git</developerConnection>
</scm>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/cng1985/adminstore.git
[email protected]:cng1985/adminstore.git
cng1985
adminstore
adminstore
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385