惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
TaoSecurity Blog
TaoSecurity Blog
P
Palo Alto Networks Blog
S
Securelist
C
CXSECURITY Database RSS Feed - CXSecurity.com
Cisco Talos Blog
Cisco Talos Blog
WordPress大学
WordPress大学
S
Schneier on Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
AWS News Blog
AWS News Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Privacy International News Feed
Security Latest
Security Latest
NISL@THU
NISL@THU
Cyberwarzone
Cyberwarzone
I
Intezer
Hugging Face - Blog
Hugging Face - Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
博客园_首页
Know Your Adversary
Know Your Adversary
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
博客园 - Franky
月光博客
月光博客
GbyAI
GbyAI
G
Google Developers Blog
V2EX - 技术
V2EX - 技术
W
WeLiveSecurity
Google Online Security Blog
Google Online Security Blog
S
Security Affairs
K
Kaspersky official blog
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
T
Troy Hunt's Blog
阮一峰的网络日志
阮一峰的网络日志
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
T
Threat Research - Cisco Blogs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
博客园 - 司徒正美
Cloudbric
Cloudbric
Blog — PlanetScale
Blog — PlanetScale
博客园 - 叶小钗
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point Blog
G
GRAHAM CLULEY

博客园 - mikelij

centos 7执行yum update时在clean up阶段挂住 写了此书《微软Azure实战参考》 北京航空航天大学出版社 2019年7月 自学提高:JVM点滴 java certificate 工具 portecle.sourceforge.net Java JVM proxy setting 备忘:用fiddler搭一个请求响应器 react 和 ractive的区别 备忘:aliyun maven mirror 在华为做外包获得的一些感想 备忘:spring jdbc事务代码 mybatis, nhibernate 备忘:mybatis 3的使用记录 testng 6.8.6 eclipse plugin 备忘:powerbroker运行一个命令 备忘:maven 错误信息: Plugin execution not covered by lifecycle configuration 备忘:hibernate, logback, slf4j实际应用一例 用nhibernate的几点小经验 JSON返回DateTime/Date('123123123')/解决办法 mysql full text全文索引必要条件 自己存档:table 的css
备忘:maven 中指定版本
mikelij · 2015-05-10 · via 博客园 - mikelij
     <build>  
        <plugins>  
          <plugin>  
            <groupId>org.apache.maven.plugins</groupId>  
            <artifactId>maven-compiler-plugin</artifactId>  
            <configuration>  
              <source>1.7</source>  
              <target>1.7</target>  
            </configuration>  
          </plugin>  
        </plugins>  
    </build>
<!--     <profiles>
    <profile>
      <id>env-dev</id>

      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.7</jdk>
        <property>
          <name>target-env</name>
          <value>dev</value>
        </property>
      </activation>

      <properties>
          <maven.compiler.source>1.6</maven.compiler.source>
          <maven.compiler.target>1.6</maven.compiler.target>
          <maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion>
      </properties>
    </profile>
    </profiles> -->

posted on 2015-05-10 10:57  mikelij  阅读(1313)  评论()    收藏  举报