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

推荐订阅源

月光博客
月光博客
V
Visual Studio Blog
C
Check Point Blog
Google DeepMind News
Google DeepMind News
S
SegmentFault 最新的问题
博客园 - 聂微东
量子位
T
Tailwind CSS Blog
罗磊的独立博客
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
L
LangChain Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Security Latest
Security Latest
M
MIT News - Artificial intelligence
Know Your Adversary
Know Your Adversary
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
爱范儿
爱范儿
T
The Exploit Database - CXSecurity.com
有赞技术团队
有赞技术团队
V
Vulnerabilities – Threatpost
Martin Fowler
Martin Fowler
A
Arctic Wolf
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
Cyberwarzone
Cyberwarzone
阮一峰的网络日志
阮一峰的网络日志
The Hacker News
The Hacker News
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
GbyAI
GbyAI
Latest news
Latest news
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
AWS News Blog
AWS News Blog
aimingoo的专栏
aimingoo的专栏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
Lohrmann on Cybersecurity
博客园 - Franky
S
Securelist
D
Darknet – Hacking Tools, Hacker News & Cyber Security
T
Threatpost
美团技术团队

博客园 - 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)  评论()    收藏  举报