|
@@ -332,6 +332,24 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <!-- creates the classes directory early in the build so the attribution plugin doesn't fail -->
|
|
|
+ <artifactId>maven-antrun-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>generate-sources</id>
|
|
|
+ <phase>generate-sources</phase>
|
|
|
+ <configuration>
|
|
|
+ <tasks>
|
|
|
+ <mkdir dir="${project.build.directory}/classes"/>
|
|
|
+ </tasks>
|
|
|
+ </configuration>
|
|
|
+ <goals>
|
|
|
+ <goal>run</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
<plugin>
|
|
|
<!-- builds xml file of dependencies and licenses for use in about page -->
|
|
|
<groupId>com.github.jinnovations</groupId>
|
|
@@ -342,7 +360,7 @@
|
|
|
<goals>
|
|
|
<goal>generate-attribution-file</goal>
|
|
|
</goals>
|
|
|
- <phase>process-resources</phase>
|
|
|
+ <phase>generate-resources</phase>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
<configuration>
|