Commit 1d9bc15a authored by liaozan's avatar liaozan 🏀

Initial commit

parent 9f245230
......@@ -106,6 +106,11 @@
<version>${fastjson.version}</version>
</dependency>
<!-- dubbo related -->
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
......@@ -184,12 +189,54 @@
</execution>
</executions>
</plugin>
<!-- 资源打包插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>compile</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.build.outputDirectory}/META-INF</directory>
<filtering>true</filtering>
<includes>
<include>spring-configuration-metadata.json</include>
</includes>
</resource>
</resources>
<outputDirectory>${basedir}/src/main/resources/META-INF</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<id>repackage</id>
<phase>package</phase>
<goals>
<goal>repackage</goal>
</goals>
</execution>
<execution>
<id>buildInfo</id>
<phase>compile</phase>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment