Maven maven-gpg-plugin在“尚未组装的工件”上失败

时间:2015-06-16 06:53:30

标签: java maven

尝试释放ActiveJDBC时,我收到此错误:

/*targeted element*/
<a class="workBox" href="<?php echo get_permalink( $the_query->ID ) ?>" ><div class="work" style="background: url('<?php echo $image[0]; ?>') center no-repeat; background-size: cover;"></div><div class="workTitle"><?php echo get_the_title( $the_query->post_title ); ?><div class="landingOffered"><em><?php echo $service; ?></em></div></div></a>

$('.workBox').hover(function() {
        $(this).find('.work').css('opacity' , '0.1');
        $(this).find('.workTitle').fadeTo(200 ,1);
        $(this).find('.landingOffered').velocity({'margin-top': '-5px'}, 200);
    }, function() {
        $(this).find('.work').css('opacity' , '1');
        $(this).find('.workTitle').fadeTo(200 , 0);
        $(this).find('.landingOffered').velocity({'margin-top': '10px'}, 200); 
 });

可以在此处找到完整输出:https://gist.githubusercontent.com/ipolevoy/26692894281151d7143a/raw/gistfile1.txt

最后一次发布是在一月份完成的,这次我也是这样做的。 项目的源代码在这里:https://github.com/javalite/activejdbc

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

解决了这个问题!真正的原因是GPG插件失败的模块是集成测试,它没有代码。所以,它没有签署。我添加了一个虚拟课程:

https://github.com/javalite/activejdbc/blob/master/db-migrator-integration-test/src/main/java/dummy/Dummy.java

并在此模块上将packaging设置为jar。这让GPG插件很开心!

相关问题