BTrace 1.1 Maven artifacts

  5 posts   Feedicon  
Replies: 4 - Last Post: November 01, 2010 16:34
by: guyagl
showing 1 - 5 of 5
 
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/
 
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.
 
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?
 
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.
 
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
  • Mysql
  • Glassfish
  • Jruby
  • Rails
  • Nblogo
Terms of Use; Privacy Policy;
© 2010, Oracle Corporation and/or its affiliates
(revision 20120518.3c65429)
 
 
Close
loading
Please Confirm
Close