|
@ -44,5 +44,34 @@
|
|
|
<version>${version.spring-boot}</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
|
|
<finalName>jolokia-server</finalName>
|
|
|
<plugins>
|
|
|
<!--springboot插件 start-->
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
<!--springboot插件 en-->
|
|
|
<!--编译插件 start-->
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
</configuration>
|
|
|
<version>3.1</version>
|
|
|
</plugin>
|
|
|
<!--编译插件 end-->
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
</project>
|