We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53339b commit 71ced91Copy full SHA for 71ced91
1 file changed
vector/pom.xml
@@ -194,6 +194,28 @@ under the License.
194
</execution>
195
</executions>
196
</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>
219
</plugins>
220
</build>
221
0 commit comments