随笔分类 -  maven

摘要:<build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plug 阅读全文
posted @ 2024-02-05 15:23 tonggc1668 阅读(45) 评论(0) 推荐(0)
摘要:use compiler 默认javac 改为groovy-eclipse <plugin> <artifactId>maven-compiler-plugin</artifactId> <!-- 2.8.0-01 and later require maven-compiler-plugin 3. 阅读全文
posted @ 2023-01-29 10:35 tonggc1668 阅读(242) 评论(0) 推荐(0)
摘要:<profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <activatedProperties>dev</activatedP 阅读全文
posted @ 2022-09-19 15:54 tonggc1668 阅读(20) 评论(0) 推荐(0)
摘要:浅谈Maven的relativePath https://blog.csdn.net/zysh888/article/details/105089895 Maven学习总结(55)——pom.xml 中 relativePath 属性的作用 https://zhanghaiyang.blog.csd 阅读全文
posted @ 2022-05-24 16:44 tonggc1668 阅读(1036) 评论(0) 推荐(0)
摘要:mvn install:install-file -Dfile=e:\QRCode.jar -DgroupId=QRCode -DartifactId=QRCode -Dversion=3.0 -Dpackaging=jar 阅读全文
posted @ 2021-12-14 14:21 tonggc1668 阅读(362) 评论(0) 推荐(0)
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> <configu 阅读全文
posted @ 2021-09-06 00:15 tonggc1668 阅读(61) 评论(0) 推荐(0)
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <e 阅读全文
posted @ 2021-09-05 21:13 tonggc1668 阅读(216) 评论(0) 推荐(0)
摘要:<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assembly</i 阅读全文
posted @ 2021-08-30 14:29 tonggc1668 阅读(174) 评论(0) 推荐(0)
摘要:<plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> < 阅读全文
posted @ 2021-08-29 19:12 tonggc1668 阅读(340) 评论(0) 推荐(0)
摘要:<plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <co 阅读全文
posted @ 2021-08-29 19:09 tonggc1668 阅读(312) 评论(0) 推荐(0)
摘要:<!-- 目录配置 --> <profiles> <!-- 开发环境 --> <profile> <id>dev</id> <properties> <spring.profiles.active>dev</spring.profiles.active> </properties> <activat 阅读全文
posted @ 2021-08-27 11:15 tonggc1668 阅读(88) 评论(0) 推荐(0)
摘要:pom.xml中的resources节点配置 (原创) http://www.tingcream.com/blogArticle/detail/aa3d3fd5c9cd4a82b6334a34459a1e90 【Maven】在pom.xml文件中使用resources插件的小作用 https://w 阅读全文
posted @ 2021-08-27 11:09 tonggc1668 阅读(370) 评论(0) 推荐(0)
摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id 阅读全文
posted @ 2021-08-27 10:11 tonggc1668 阅读(102) 评论(0) 推荐(0)
摘要:<!-- This improves the out-of-the-box experience in Eclipse by resolving some warnings. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>li 阅读全文
posted @ 2021-07-21 16:07 tonggc1668 阅读(355) 评论(0) 推荐(0)
摘要:<!-- 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 阅读全文
posted @ 2021-07-21 16:03 tonggc1668 阅读(33) 评论(0) 推荐(0)
摘要:Maven3种打包方式之一maven-assembly-plugin的使用 https://blog.csdn.net/qq_32736999/article/details/93395246 maven打包之assembly和shade对比 https://blog.csdn.net/Cool0/ 阅读全文
posted @ 2021-07-12 14:37 tonggc1668 阅读(135) 评论(0) 推荐(0)
摘要:maven 常用插件之shade https://www.jianshu.com/p/1bbb317b55ee Maven shade for spring boot https://my.oschina.net/u/732556/blog/1545821 使用maven-shade-plugin打 阅读全文
posted @ 2021-07-12 11:50 tonggc1668 阅读(312) 评论(0) 推荐(0)
摘要:<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.1.0</version> <executions> <execution> <phase>pro 阅读全文
posted @ 2021-01-13 19:17 tonggc1668 阅读(736) 评论(0) 推荐(0)
摘要:<!-- To generate a graph of the project dependencies, run: mvn -P graph graph:project --> <profile> <id>graph</id> <build> <plugins> <plugin> <groupId 阅读全文
posted @ 2021-01-12 16:00 tonggc1668 阅读(166) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-01-06 18:16 tonggc1668 阅读(53) 评论(0) 推荐(0)