File tree Expand file tree Collapse file tree 2 files changed +56
-1
lines changed Expand file tree Collapse file tree 2 files changed +56
-1
lines changed Original file line number Diff line number Diff line change 44
55 <groupId >org.ruleml.translation</groupId >
66 <artifactId >ruleml2tptp</artifactId >
7- <version >1.1 </version >
7+ <version >2.0 </version >
88 <packaging >jar</packaging >
99
1010 <name >ruleml2tptp</name >
8282 </execution >
8383 </executions >
8484 </plugin >
85+ <plugin >
86+ <groupId >org.apache.maven.plugins</groupId >
87+ <artifactId >maven-assembly-plugin</artifactId >
88+ <version >2.5.3</version >
89+ <executions >
90+ <execution >
91+ <phase >package</phase >
92+ <goals >
93+ <goal >single</goal >
94+ </goals >
95+ <configuration >
96+ <descriptors >
97+ <descriptor >src/assembly/bin.xml</descriptor >
98+ </descriptors >
99+ </configuration >
100+ </execution >
101+ </executions >
102+ </plugin >
85103 </plugins >
86104 </build >
87105
Original file line number Diff line number Diff line change 1+ <assembly xmlns =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd" >
4+ <id >bin</id >
5+ <formats >
6+ <format >tar.gz</format >
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+ <include >NOTICE*</include >
17+ </includes >
18+ </fileSet >
19+ <fileSet >
20+ <directory >${project.build.directory}</directory >
21+ <outputDirectory ></outputDirectory >
22+ <includes >
23+ <include >*.jar</include >
24+ </includes >
25+ </fileSet >
26+ <fileSet >
27+ <directory >${project.build.directory}/site</directory >
28+ <outputDirectory >docs</outputDirectory >
29+ </fileSet >
30+ </fileSets >
31+ <dependencySets >
32+ <dependencySet >
33+ <useProjectArtifact >false</useProjectArtifact >
34+ <outputDirectory >dependency</outputDirectory >
35+ </dependencySet >
36+ </dependencySets >
37+ </assembly >
You can’t perform that action at this time.
0 commit comments