|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>com.zzg</groupId>
|
5 | 5 | <artifactId>mybatis-generator-gui</artifactId>
|
6 |
| - <version>0.7.2</version> |
| 6 | + <version>0.8.0</version> |
7 | 7 |
|
8 | 8 | <properties>
|
9 | 9 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
68 | 68 | <target>1.8</target>
|
69 | 69 | </configuration>
|
70 | 70 | </plugin>
|
| 71 | + <plugin> |
| 72 | + <artifactId>maven-resources-plugin</artifactId> |
| 73 | + <version>3.0.2</version> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>copy-files-on-build</id> |
| 77 | + <phase>package</phase> |
| 78 | + <goals> |
| 79 | + <goal>copy-resources</goal> |
| 80 | + </goals> |
| 81 | + <configuration> |
| 82 | + <outputDirectory>${project.build.directory}/classes/lib</outputDirectory> |
| 83 | + <resources> |
| 84 | + <resource> |
| 85 | + <directory>${basedir}/src/main/lib</directory> |
| 86 | + <include>*.jar</include> |
| 87 | + <filtering>false</filtering> |
| 88 | + </resource> |
| 89 | + </resources> |
| 90 | + </configuration> |
| 91 | + </execution> |
| 92 | + </executions> |
| 93 | + </plugin> |
71 | 94 | <plugin>
|
72 | 95 | <groupId>com.zenjava</groupId>
|
73 | 96 | <artifactId>javafx-maven-plugin</artifactId>
|
74 |
| - <version>8.5.0</version> |
| 97 | + <version>8.8.3</version> |
75 | 98 | <configuration>
|
76 | 99 | <mainClass>com.zzg.mybatis.generator.MainUI</mainClass>
|
77 | 100 | <vendor>Owen Zou</vendor>
|
|
80 | 103 | <nativeReleaseVersion>0.1</nativeReleaseVersion>
|
81 | 104 | <needShortcut>true</needShortcut>
|
82 | 105 | <needMenu>true</needMenu>
|
| 106 | + <copyAdditionalAppResourcesToJar>true</copyAdditionalAppResourcesToJar> |
| 107 | + <additionalAppResources>${project.basedir}/src/main</additionalAppResources> |
83 | 108 | </configuration>
|
84 | 109 | </plugin>
|
85 | 110 | </plugins>
|
|
0 commit comments