mirror of https://github.com/apache/activemq.git
AMQ-1091
Changes: 1. Fix assembly-src profile by providing the correct path to unix-src.xml and windows-src.xml assembly descriptor. 2. Commented out excluded "data" dir in source assembly descriptor because it wasn't including the data package in activemq-core. git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@486479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
747acfef69
commit
e413e8711b
|
@ -350,15 +350,27 @@
|
|||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>src</id>
|
||||
<execution>
|
||||
<id>unix-src</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attached</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/descriptors/src-bin.xml</descriptor>
|
||||
<descriptor>src/main/descriptors/unix-src.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>windows-src</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attached</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/descriptors/windows-src.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
|
|
@ -73,8 +73,8 @@
|
|||
<exclude>assembly/src/release/bin/*/wrapper</exclude>
|
||||
<exclude>**/target/**</exclude>
|
||||
<exclude>**/build/**</exclude>
|
||||
<exclude>data/**</exclude>
|
||||
<exclude>*/data/**</exclude>
|
||||
<!-- exclude>data/**</exclude>
|
||||
<exclude>*/data/**</exclude -->
|
||||
<exclude>activemq-data/**</exclude>
|
||||
<exclude>*/activemq-data/**</exclude>
|
||||
<exclude>**/eclipse-classes/**</exclude>
|
||||
|
|
|
@ -74,8 +74,8 @@
|
|||
|
||||
<exclude>**/target/**</exclude>
|
||||
<exclude>**/build/**</exclude>
|
||||
<exclude>data/**</exclude>
|
||||
<exclude>*/data/**</exclude>
|
||||
<!-- exclude>data/**</exclude>
|
||||
<exclude>*/data/**</exclude -->
|
||||
<exclude>activemq-data/**</exclude>
|
||||
<exclude>*/activemq-data/**</exclude>
|
||||
<exclude>**/eclipse-classes/**</exclude>
|
||||
|
|
Loading…
Reference in New Issue