156 lines
4.1 KiB
XML
156 lines
4.1 KiB
XML
|
<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">
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.alibaba.nacos</groupId>
|
||
|
<artifactId>nacos-all</artifactId>
|
||
|
<version>0.1.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>nacos-config</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>nacos-config ${project.version}</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>nacos-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>taglibs</groupId>
|
||
|
<artifactId>standard</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-dbcp</groupId>
|
||
|
<artifactId>commons-dbcp</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.derby</groupId>
|
||
|
<artifactId>derby</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- for aop -->
|
||
|
<dependency>
|
||
|
<groupId>org.aspectj</groupId>
|
||
|
<artifactId>aspectjrt</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cglib</groupId>
|
||
|
<artifactId>cglib-nodep</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpasyncclient</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Provided -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.jackson</groupId>
|
||
|
<artifactId>jackson-mapper-lgpl</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.jcip</groupId>
|
||
|
<artifactId>jcip-annotations</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.spotbugs</groupId>
|
||
|
<artifactId>spotbugs-annotations</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skipTests>true</skipTests>
|
||
|
<argLine>-Dnacos.standalone=true</argLine>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>com.alibaba.nacos.config.server.Config</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>springboot</id>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.nacos</groupId>
|
||
|
<artifactId>nacos-core</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<mainClass>com.alibaba.nacos.config.server.Config</mainClass>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
<finalName>nacos-config</finalName>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|