Philippe Marschall
|
Posted: August 02, 2010 16:07 by Philippe Marschall
|
|
I found the Btrace 1.0.5 artifacts [1] but nothing for 1.1. Where can I get them? [1] http://download.java.net/maven/2/com/sun/tools/btrace/btrace-client/ |
BTrace 1.1 Maven artifacts
Replies: 4 - Last Post: November 01, 2010 16:34
by: guyagl
by: guyagl
showing 1 - 5 of 5
Jaroslav Bachorik
|
Posted: August 03, 2010 09:49 by Jaroslav Bachorik
|
| Sorry, they weren't generated. I've just uploaded the 1.1.3 version into the same maven repository - it takes some time to propagate, though. |
Philippe Marschall
|
Posted: August 03, 2010 12:35 by Philippe Marschall
|
| Awesome, thanks. I'm hesitating to ask but would it be possible for future releases to also include source and javadoc jars as well? |
Jaroslav Bachorik
|
Posted: August 05, 2010 08:22 by Jaroslav Bachorik
|
|
Would be happy to - but I have no clue as how to do that. Those 3 artifacts come from one codebase. If anyone more skilled in Maven would be willing to contribute the solution I would be more than pleased to incorporate it in BTrace. |
guyagl
|
Posted: November 01, 2010 16:34 by guyagl
|
|
Adding something like this should create the source and javadoc jars for upload. <!-- Create Javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.6.1</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Package up the source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-javasources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> |
Replies: 4 - Last Post: November 01, 2010 16:34
by: guyagl
by: guyagl








