Created
December 25, 2012 09:14
-
-
Save relax-more/4372419 to your computer and use it in GitHub Desktop.
【メモ】 maven, pom.xml の dependency.scope=providedについて
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- scope=provided は実行環境で提供されるライブラリに対して指定する--> | |
<!-- ビルド時に含まないようになる--> | |
<!-- 抜粋 --> | |
<dependency> | |
<groupId>commons-modeler</groupId> | |
<artifactId>commons-modeler</artifactId> | |
<version>2.0</version> | |
<scope>provided</scope> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment