我正在尝试将My Batis生成器安装到Eclipse Mars。现在,我已经从这个来源安装到其他计算机上没有问题(它是32位计算机,并赢得7):
http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite/
出于某种原因,我现在无法在我的其他机器,64位窗口上安装它。 Eclipse刚刚找不到这条路径(我认为这与我公司所依赖的代理有关,但我不明白为什么它会在32位计算机上通过,在这里,仅在我的例子中赢得了64位计算机。)
怎么做。我可以从这里抓取pom.xml并手动安装吗?
http://search.maven.org/#artifactdetails%7Corg.mybatis.generator%7Cmybatis-generator%7C1.3.2%7C
但是,似乎在那个pom中还有其他相关的工件,我不想安装和使用(我不知道如何在这一点上精确配置Maven)。该怎么办? 我不能创建emtpy pom.xml文件并像这样写(我这里没有包含maven标题):
<?php
/*
Template Name: Membership
*/
get_header();
?>
<div class="site-bd">
<div class="wrapper">
<div class="hero">
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
?>
<div class="shelf shelf_3">
<?php the_post_thumbnail(); ?>
</div>
<?php
endwhile;
endif;
?>
</div>
<div class="grid">
<?php
if( have_rows('top_columns') ) :
while ( have_rows('top_columns') ) : the_row();
?>
<div class="grid_item grid_item-oneThird">
<div class="shelf">
<div class="shelf">
<?php the_sub_field('column_1'); ?>
</div>
<ul class="vList">
<li>
<a href="#" class="btn" target="_blank">Join or Renew Online</a>
</li>
<li>
<a href="#" class="btn" target="_blank">Download Membership Form</a>
</li>
</ul>
</div>
</div><div class="grid_item grid_item-oneThird">
<div class="box">
<div class="shelf">
<?php the_sub_field('column_2'); ?>
</div>
</div>
</div><div class="grid_item grid_item-oneThird">
<div class="box">
<div class="shelf">
<?php the_sub_field('column_3'); ?>
</div>
</div>
</div>
<?php
endwhile;
endif;
?>
</div>
</div>
</div>
<?php get_footer(); ?>
我需要安装My Batis生成器,Eclipse不会帮我做,所以我试图找到最快的解决方案..该怎么办?