随笔分类 - maven
摘要:<build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plug
阅读全文
摘要:use compiler 默认javac 改为groovy-eclipse <plugin> <artifactId>maven-compiler-plugin</artifactId> <!-- 2.8.0-01 and later require maven-compiler-plugin 3.
阅读全文
摘要:<profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <activatedProperties>dev</activatedP
阅读全文
摘要:浅谈Maven的relativePath https://blog.csdn.net/zysh888/article/details/105089895 Maven学习总结(55)——pom.xml 中 relativePath 属性的作用 https://zhanghaiyang.blog.csd
阅读全文
摘要:mvn install:install-file -Dfile=e:\QRCode.jar -DgroupId=QRCode -DartifactId=QRCode -Dversion=3.0 -Dpackaging=jar
阅读全文
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> <configu
阅读全文
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <e
阅读全文
摘要:<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assembly</i
阅读全文
摘要:<plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> <
阅读全文
摘要:<plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <co
阅读全文
摘要:<!-- 目录配置 --> <profiles> <!-- 开发环境 --> <profile> <id>dev</id> <properties> <spring.profiles.active>dev</spring.profiles.active> </properties> <activat
阅读全文
摘要:pom.xml中的resources节点配置 (原创) http://www.tingcream.com/blogArticle/detail/aa3d3fd5c9cd4a82b6334a34459a1e90 【Maven】在pom.xml文件中使用resources插件的小作用 https://w
阅读全文
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id
阅读全文
摘要:<!-- This improves the out-of-the-box experience in Eclipse by resolving some warnings. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>li
阅读全文
摘要:<!-- This profile helps to make things run out of the box in IntelliJ --> <!-- Its adds Flink's core classes to the runtime class path. --> <!-- Other
阅读全文
摘要:Maven3种打包方式之一maven-assembly-plugin的使用 https://blog.csdn.net/qq_32736999/article/details/93395246 maven打包之assembly和shade对比 https://blog.csdn.net/Cool0/
阅读全文
摘要:maven 常用插件之shade https://www.jianshu.com/p/1bbb317b55ee Maven shade for spring boot https://my.oschina.net/u/732556/blog/1545821 使用maven-shade-plugin打
阅读全文
摘要:<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.1.0</version> <executions> <execution> <phase>pro
阅读全文
摘要:<!-- To generate a graph of the project dependencies, run: mvn -P graph graph:project --> <profile> <id>graph</id> <build> <plugins> <plugin> <groupId
阅读全文
摘要:When you developed your code and ready to push to origin, you can verify your code first by these two steps: ./gradlew spotlessApply for formatting yo
阅读全文
浙公网安备 33010602011771号