Skip to content

Instantly share code, notes, and snippets.

@yufan-liu
Created May 14, 2014 05:21
Show Gist options
  • Save yufan-liu/37e651bb007ceb3791ad to your computer and use it in GitHub Desktop.
Save yufan-liu/37e651bb007ceb3791ad to your computer and use it in GitHub Desktop.
<dependency>
<!-- 子项目,被依赖的子项目必须经过maven的install安装,不然maven还是找不到! -->
<groupId>bgonline</groupId>
<artifactId>foundation</artifactId>
<version>1.0.0</version>
<!-- 排除 -->
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<repositories>
<repository>
<id>central</id>
<name>Maven Repository Switchboard</name>
<layout>default</layout>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment