You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.7 KiB
XML
86 lines
2.7 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>
|
|
|
|
<parent>
|
|
<groupId>org.alis</groupId>
|
|
<artifactId>alis-project</artifactId>
|
|
<version>sheep</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>org.alis.notebook</groupId>
|
|
<artifactId>alis-notebook</artifactId>
|
|
<version>penguin</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>notebook</name>
|
|
<description>项目是使用spring cloud alibaba 所构建的一个微服务应用,使用一整套微服务治理服务生成的一个系统,麻雀虽小五脏俱全。</description>
|
|
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>lc</name>
|
|
<organization>alis</organization>
|
|
<email>18161057239@163.com</email>
|
|
<roles>
|
|
<role>main</role>
|
|
<role>initiator</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>alis-notebook-portal</module>
|
|
<module>alis-notebook-common</module>
|
|
<module>alis-notebook-nacos</module>
|
|
<module>alis-notebook-config</module>
|
|
<module>alis-notebook-gateway</module>
|
|
</modules>
|
|
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.6.1</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |