|
@@ -28,11 +28,35 @@
|
|
|
<configuration>
|
|
<configuration>
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
|
|
+ <createSourcesJar>true</createSourcesJar>
|
|
|
<minimizeJar>false</minimizeJar>
|
|
<minimizeJar>false</minimizeJar>
|
|
|
</configuration>
|
|
</configuration>
|
|
|
</execution>
|
|
</execution>
|
|
|
</executions>
|
|
</executions>
|
|
|
</plugin>
|
|
</plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
+ <artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
+ <version>3.2.0</version>
|
|
|
|
|
+ <executions>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <id>attach-artifacts</id>
|
|
|
|
|
+ <phase>package</phase>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>attach-artifact</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <artifacts>
|
|
|
|
|
+ <artifact>
|
|
|
|
|
+ <file>../assira.core11/target/assira.core11-${project.version}-javadoc.jar</file>
|
|
|
|
|
+ <type>jar</type>
|
|
|
|
|
+ <classifier>javadoc</classifier>
|
|
|
|
|
+ </artifact>
|
|
|
|
|
+ </artifacts>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ </executions>
|
|
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
|
|
|