File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 </resources >
2929 <!-- <testSourceDirectory>testing</testSourceDirectory> -->
3030 <plugins >
31-
32- <!-- Maven Source Plugin -->
31+
32+ <!-- Maven Source Plugin -->
3333 <plugin >
3434 <groupId >org.apache.maven.plugins</groupId >
3535 <artifactId >maven-source-plugin</artifactId >
4343 </execution >
4444 </executions >
4545 </plugin >
46-
46+
4747 <!-- Maven Javadoc Plugin -->
48- <!-- <plugin>
49- <groupId>org.apache.maven.plugins</groupId>
50- <artifactId>maven-javadoc-plugin</artifactId>
51- <version>3.0.0-M1</version>
52- <executions>
53- <execution>
54- <id>attach-javadocs</id>
55- <goals>
56- <goal>jar</goal>
57- </goals>
58- </execution>
59- </executions>
60- </plugin> -->
61-
48+ <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId>
49+ <version>3.0.0-M1</version> <executions> <execution> <id>attach-javadocs</id>
50+ <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> -->
51+
6252 <!-- Maven Compiler Plugin -->
6353 <plugin >
6454 <groupId >org.apache.maven.plugins</groupId >
10797 </execution >
10898 </executions >
10999 </plugin >
100+
101+ <!-- Copy Assemply dependency -->
102+ <plugin >
103+ <artifactId >maven-assembly-plugin</artifactId >
104+ <version >3.1.0</version >
105+ <configuration >
106+ <descriptors >
107+ <descriptor >src/assembly/assembly.xml</descriptor >
108+ </descriptors >
109+ </configuration >
110+ <executions >
111+ <execution >
112+ <id >create-archive</id >
113+ <phase >package</phase >
114+ <goals >
115+ <goal >single</goal >
116+ </goals >
117+ </execution >
118+ </executions >
119+ </plugin >
120+
110121 </plugins >
111122 </build >
112123
Original file line number Diff line number Diff line change 1+ <assembly
2+ xmlns=" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/3.0.0"
3+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi:schemaLocation=" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/3.0.0 http://maven.apache.org/xsd/assembly-3.0.0.xsd" >
5+ <id >bin</id >
6+ <formats >
7+ <format >zip</format >
8+ </formats >
9+ <fileSets >
10+ <fileSet >
11+ <directory >${project.basedir}</directory >
12+ <outputDirectory >.</outputDirectory >
13+ <includes >
14+ <include >README*</include >
15+ <include >LICENSE*</include >
16+ </includes >
17+ </fileSet >
18+ <fileSet >
19+ <directory >${project.build.directory}</directory >
20+ <outputDirectory >.</outputDirectory >
21+ <includes >
22+ <include >*.jar</include >
23+ <include >JavaFXWebBrowser_lib</include >
24+ <include >JavaFXWebBrowser_lib/*</include >
25+ </includes >
26+ </fileSet >
27+ <fileSet >
28+ <directory >${project.build.directory}/site</directory >
29+ <outputDirectory >docs</outputDirectory >
30+ </fileSet >
31+ </fileSets >
32+ </assembly >
You can’t perform that action at this time.
0 commit comments