本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- e_e
- javashop
- sam123456gz
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- lemonhandsome
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- Xeden
- zhanjia
- johnsmith9th
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- 喧嚣求静
- ranbuijj
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
maven全局配置文件settings.xml详解
转自:http://www.cnblogs.com/jingmoxukong/p/6050172.html
目录
概要
settings.xml有什么用?
settings.xml文件位置
配置优先级
settings.xml元素详解
顶级元素概览
国内开源中国镜像settings.xml配置
mirror
<mirror>
<id>nexus-osc</id>
<mirrorOf>central</mirrorOf>
<name>Nexus osc</name>
<url>http://maven.oschina.net/content/groups ...
IDEA常规设置
我现在用的IDEA是IntelliJ IDEA14,即是14版本的, Keymaps使用的是Eclipse copy。
显示行号:
我们在开发的时候,常常想看看所在代码在哪一行,或者某个文件已经写了多少行代码,这时就会需要打开IDEA的显示行号的功能:File->Settings->Editor->General->Appearence->Show Line N ...
为Maven自定义repository的path、修改JDK版本、自定义代理
修改文件
“maven的安装路径\conf\settings.xml”
1.自定义repository的path
<localRepository>F:\maven\.m2\repository</localRepository>
2.修改JDK版本
两种方法,请参照http://lyking2001.iteye.com/blog/83 ...
在Sinatra中灵活地配置Environments
在Sinatra中灵活的配置Environments
在Sinatra中有三个预先定义的环境属性值,包括:development, test, production.
这个当前所处的环境的值还可以通过RACK_ENV这个环境变量来设置。如果什么都不设置,默认就是develpment。
之所以要区分不同环境的值,主要是我们在不同的环境下需要采用不同的配置。例如:开发环境采用po ...
部署自己的构建至私服nexus
1、配置部署Maven
2、部署nexus(参考Nexus官方文档);
3、拷贝$M2_HOME/conf/settings.xml 至 $user/.m2/目录;
4、修改settings.xml文件:增加server配置
Xml代码
<
servers
>
……
<
server
& ...
Target runtime Apache Tomcat 6.0 is not defined 解决方法
在其他机器上整合好的工程在我机器上总是出现Target runtime Apache Tomcat 6.0 is 解决not defined.这个错误,找工程属性也没有,后来网上找到的方法。
在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:
<?xml version="1.0 ...
android 设置系统屏幕背光时间或锁屏间隔时间
是系统不是当前应用的
/**
* 获得锁屏时间 毫秒
*/
private int getScreenOffTime(){
int screenOffTime=0;
try{
screenOffTime = Settings.System.getInt(getContentResolver(), Settings ...
Ativity启动指定的settings
Intent it = new Intent(Intent.ACTION_MAIN);
it.setClassName("com.android.phone","com.android.phone.CallFeaturesSetting");
startActivity(it);
简单注释下: intent.ACTION_MAIN
...
新装ubuntu的基本软件
1 set repository
System -> Administration -> Synaptic Package Manager
Settings -> Repositories
server:
http://ubuntu.uestc.edu.cn/ubuntu/
2 set workspaces
software center -> install co ...
maven 配置篇(一)
了settings.xml配置,下来说一下maven2的主要配置pom.xml
什么是pom?
pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。
快速察看:
xml 代码
<project>
...
Android 中Locale,auto-rotate状态的获取
1. 得到当前locale:
Context.getResources().getConfiguration.locale;
2. 是否开启了auto-rotate:(这个和具体设备似乎也有关系,不确定是否通用)
import android.provider.Settings;
mAutoRotateSwitch = (Settings.System.getInt(this.getCont ...