Skip to content

Commit 54df58a

Browse files
committed
[fit] 修改在fit-security-simple的pom,加入复制的命令
1 parent f1f1dd7 commit 54df58a

File tree

1 file changed

+13
-12
lines changed
  • framework/fit/java/fit-builtin/plugins/fit-security-simple

1 file changed

+13
-12
lines changed

framework/fit/java/fit-builtin/plugins/fit-security-simple/pom.xml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,22 @@
5353
<groupId>org.fitframework</groupId>
5454
<artifactId>fit-build-maven-plugin</artifactId>
5555
<version>${fit.version}</version>
56-
<configuration>
57-
<category>system</category>
58-
<level>1</level>
59-
</configuration>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-antrun-plugin</artifactId>
60+
<version>${maven.antrun.version}</version>
6061
<executions>
6162
<execution>
62-
<id>build-plugin</id>
63-
<goals>
64-
<goal>build-plugin</goal>
65-
</goals>
66-
</execution>
67-
<execution>
68-
<id>package-plugin</id>
63+
<phase>package</phase>
64+
<configuration>
65+
<target>
66+
<copy file="${project.build.directory}/${project.build.finalName}.jar"
67+
todir="../../../target/plugins"/>
68+
</target>
69+
</configuration>
6970
<goals>
70-
<goal>package-plugin</goal>
71+
<goal>run</goal>
7172
</goals>
7273
</execution>
7374
</executions>

0 commit comments

Comments
 (0)