构建with cte(id,parentid,text) as
(select id, parentid, text from treeview where parentid = 450
union all select t.id, t.parentid, t.text from treeview as t
inner join cte as c on t.parentid = c.id)
select id, parentid, text from cte
时,我想包含一个文件,将其重命名并将其放在jar
内,但是jar
会将重命名的文件放在目标文件夹中,而不是放在Maven
。如何重命名要包含在jar
中的文件?
jar
答案 0 :(得分:1)
您正在尝试使用错误的目标和执行ID复制并重命名该文件。 试试这个:
<executions>
<execution>
<id>copy-rename</id>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
...