Skip to content

Commit 71ced91

Browse files
committed
apacheGH-1061 Add codegen classifier jar for arrow-vector.
1 parent a53339b commit 71ced91

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

vector/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,28 @@ under the License.
194194
</execution>
195195
</executions>
196196
</plugin>
197+
<plugin>
198+
<groupId>org.apache.maven.plugins</groupId>
199+
<artifactId>maven-jar-plugin</artifactId>
200+
<executions>
201+
<execution>
202+
<id>codegen-jar</id>
203+
<goals>
204+
<goal>jar</goal>
205+
</goals>
206+
<phase>package</phase>
207+
<configuration>
208+
<classifier>codegen</classifier>
209+
<classesDirectory>${basedir}/src/main/codegen</classesDirectory>
210+
<includes>
211+
<include>**/*.tdd</include>
212+
<include>**/*.fmpp</include>
213+
<include>**/*.ftl</include>
214+
</includes>
215+
</configuration>
216+
</execution>
217+
</executions>
218+
</plugin>
197219
</plugins>
198220
</build>
199221

0 commit comments

Comments
 (0)