I want to add *.jar as a file artifact like:

                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>build-helper-maven-plugin</artifactId>
                    <executions>
                         <execution>
                               <id>attach-artifacts</id>
                            <phase>package</phase>
                            <goals>
                              <goal>attach-artifact</goal>
                            </goals>
                            <configuration>
                                <artifacts>
                                  <artifact>
                                   <file>${basedir}/target/bpel_*.jar</file>
                                    <type>jar</type>
                                    <classifier></classifier>
                                  </artifact>
                                </artifacts>
                            </configuration>
                        </execution>

                    </executions>
                </plugin>


But it keeps saying there that bpel_*.jar does not exist. How can I wild
card this value?

-- 

Thanks,
Mick Knutson

http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---

Reply via email to